-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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": "traverse-json",
"version": "0.5.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "nyc ava -v",
"docs": "{ cat HEADER.md; jsdoc2md index.js; } > README.md",
"coverage": "nyc report --reporter=lcov --reporter=text",
"postcoverage": "codecov",
"report": "nyc report --reporter=html && http-server -o coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"devDependencies": {
"ava": "^3.13.0",
"eslint": "^7.12.1",
"http-server": "^0.12.3",
"jsdoc-to-markdown": "^6.0.1",
"nyc": "^15.1.0",
"codecov": "^3.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubeniskov/traverse-json.git"
},
"author": "rubeniskov <me@rubeniskov.com> (http://rubeniskov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rubeniskov/traverse-json/issues"
},
"homepage": "https://github.com/rubeniskov/traverse-json#readme",
"dependencies": {
"is-plain-object": "^5.0.0",
"minimatch": "^3.0.4"
}
}