-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "firebase-safekey",
"version": "0.1.9",
"description": "Safe Firebase keys as it doesn't like ., $, #, [, ], or /. in it's keys",
"main": "index.js",
"scripts": {
"start": "node index.js",
"doctoc": "doctoc README.md && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add README.md && git commit --no-verify -m 'table of contents update'; fi",
"test": "mocha -R list test/*.js"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yieme/firebase-safekey"
},
"keywords": [
"firebase",
"safekey"
],
"author": "yieme",
"license": "MIT",
"bugs": {
"url": "https://github.com/yieme/firebase-safekey/issues"
},
"dependencies": {
"lodash": "^3.8.0"
},
"devDependencies": {
"object-attributes": "~0.1.1",
"chai": "~1.10.0"
},
"globalDependencies": {
"jshint": "^2.7.0",
"mocha": "~2.1.0"
},
"generatedBy": {
"name": "generator-pkg",
"version": "0.9.8",
"url": "https://github.com/yieme/generator-pkg"
}
}