forked from joonhocho/firebase-encode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "firebase-encode",
"version": "0.0.5",
"description": "Encode and decode firebase key string to escape and unescape unsafe characters (.$[]#/).",
"main": "lib/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build": "babel src --out-dir lib",
"build-watch": "babel src --watch --out-dir lib",
"clear": "rm -rf ./lib ./coverage ./.nyc_output",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"nyc": "nyc npm test && nyc report --reporter=lcov",
"pretest": "npm run build",
"start": "npm test",
"test": "mocha",
"test-watch": "mocha --watch",
"update-D": "npm install --save-dev babel-cli@latest babel-preset-es2015@latest babel-preset-stage-0@latest babel-register@latest chai@latest chai-as-promised@latest coveralls@latest mocha@latest nyc@latest",
"watch": "npm run build-watch & npm run test-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joonhocho/firebase-encode.git"
},
"keywords": [
"encode",
"decode",
"escape",
"firebase",
"key"
],
"author": "Joon Ho Cho",
"license": "MIT",
"bugs": {
"url": "https://github.com/joonhocho/firebase-encode/issues"
},
"homepage": "https://github.com/joonhocho/firebase-encode#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.9",
"mocha": "^2.5.3",
"nyc": "^6.4.4"
}
}