-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.35 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
52
53
54
55
56
57
58
{
"name": "json-parser",
"version": "3.1.2",
"description": "JSON parser to parse JSON object and MAINTAIN comments.",
"main": "src/index.js",
"scripts": {
"test": "NODE_DEBUG=json-parser nyc ava --timeout=10s --verbose",
"test:dev": "NODE_DEBUG=json-parser nyc ava --timeout=10s --verbose && npm run report:dev",
"lint": "eslint .",
"fix": "eslint . --fix",
"posttest": "npm run report",
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report:dev": "nyc report --reporter=html && npm run report:open",
"report:open": "open coverage/index.html"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/node-json-parser.git"
},
"keywords": [
"json-parser",
"json",
"lex",
"parser",
"ast",
"syntax",
"mangler",
"comments"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/node-json-parser/issues"
},
"devDependencies": {
"@ostai/eslint-config": "^3.2.0",
"ava": "^2.1.0",
"codecov": "^3.5.0",
"eslint": "^6.0.0",
"eslint-plugin-import": "^2.17.3",
"nyc": "^14.1.1"
},
"dependencies": {
"comment-json": "^2.1.0"
}
}