-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.03 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": "relaxed-json",
"description": "Relaxed JSON is strict superset JSON, relaxing strictness of valilla JSON",
"version": "1.0.3",
"homepage": "https://github.com/phadej/relaxed-json",
"author": {
"name": "Oleg Grenrus",
"email": "[email protected]",
"url": "http://oleg.fi/"
},
"repository": {
"type": "git",
"url": "git://github.com/phadej/relaxed-json.git"
},
"bugs": {
"url": "https://github.com/phadej/relaxed-json/issues"
},
"license": "BSD-3-Clause",
"main": "relaxed-json.js",
"bin": {
"rjson": "./bin/rjson.js"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "make"
},
"devDependencies": {
"david": "^11.0.0",
"eslint": "^5.15.0",
"nyc": "^13.3.0",
"jsverify": "^0.8.4",
"mocha": "^6.0.2",
"uglify-js": "^3.4.9",
"underscore": "^1.8.2",
"typify-bin": "0.0.7"
},
"keywords": [
"json",
"comments",
"comment",
"config"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.6.0"
}
}