-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "jsonplus",
"version": "1.2.1",
"description": "JSON parser with comments and self reference support",
"main": "parse.js",
"scripts": {
"test": "nodeunit tests/tests.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serkanyersen/jsonplus.git"
},
"bugs": {
"url": "https://github.com/serkanyersen/jsonplus/issues"
},
"homepage": "https://github.com/serkanyersen/jsonplus#readme",
"keywords": [
"JSON",
"comments",
"self",
"reference",
"self",
"this",
"smart",
"fixtures",
"$ref"
],
"typescript": {
"definition": "jsonplus.d.ts"
},
"author": "Serkan Yersen <serkanyersen@gmail.com> (http://serkan.io/)",
"license": "MIT",
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"nodeunit": "^0.9.1"
},
"dependencies": {
"lodash": "^3.10.1",
"strip-json-comments": "^1.0.4"
}
}