forked from groupon/cson-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
50
51
{
"name": "cson-parser",
"version": "1.3.1",
"description": "Safe parsing of CSON files",
"license": "BSD-3-Clause",
"main": "lib/cson-parser.js",
"homepage": "https://github.com/groupon/cson-parser",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/groupon/cson-parser"
},
"bugs": "https://github.com/groupon/cson-parser/issues",
"scripts": {
"build": "rm -rf lib && coffee --no-header -cbo lib src",
"pretest": "npm run build",
"test": "mocha",
"posttest": "nlm verify",
"watch": "coffee --no-header -wcbo lib src & nodemon -w lib -w test -e coffee,js,json -x \"mocha\""
},
"nlm": {
"license": {
"files": [
"src"
]
}
},
"dependencies": {
"coffee-script": "^1.10.0"
},
"devDependencies": {
"assertive": "^2.0.0",
"mocha": "^2.0.0",
"nlm": "^2.0.0",
"nodemon": "^1.0.0"
},
"author": {
"name": "Groupon",
"email": "[email protected]"
},
"keywords": [
"cson",
"parser"
],
"files": [
"*.js",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}