-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "mutant-json",
"version": "0.6.3",
"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",
"types": "rm -rf types && tsc --declaration --emitDeclarationOnly --outDir types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubeniskov/mutant-json.git"
},
"author": "rubeniskov <[email protected]> (http://rubeniskov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rubeniskov/mutant-json/issues"
},
"homepage": "https://github.com/rubeniskov/mutant-json#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"devDependencies": {
"ava": "^3.13.0",
"eslint": "^7.14.0",
"http-server": "^0.12.3",
"jsdoc-to-markdown": "^6.0.1",
"nyc": "^15.1.0",
"codecov": "^3.8.1",
"typescript": "4.1.2"
},
"dependencies": {
"traverse-json": "^0.5.1",
"is-promise": "^4.0.0",
"jsonpatch": "^3.0.1"
}
}