Skip to content

Commit be2b1c6

Browse files
committed
replace istanbul withnyc
1 parent 744e3bd commit be2b1c6

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

package.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"eslint": "eslint index.js keywords spec",
88
"test": "npm run eslint && npm run test-cov",
99
"test-spec": "mocha spec/*.spec.js -R spec",
10-
"test-cov": "istanbul cover -x '**/spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec"
10+
"test-cov": "nyc npm run test-spec"
1111
},
1212
"repository": {
1313
"type": "git",
14-
"url": "git+https://github.com/epoberezkin/ajv-merge-patch.git"
14+
"url": "git+https://github.com/ajv-validator/ajv-merge-patch.git"
1515
},
1616
"keywords": [
1717
"JSON",
@@ -29,9 +29,9 @@
2929
"author": "Evgeny Poberezkin",
3030
"license": "MIT",
3131
"bugs": {
32-
"url": "https://github.com/epoberezkin/ajv-merge-patch/issues"
32+
"url": "https://github.com/ajv-validator/ajv-merge-patch/issues"
3333
},
34-
"homepage": "https://github.com/epoberezkin/ajv-merge-patch#readme",
34+
"homepage": "https://github.com/ajv-validator/ajv-merge-patch#readme",
3535
"dependencies": {
3636
"fast-json-patch": "^2.0.6",
3737
"json-merge-patch": "^0.2.3"
@@ -40,11 +40,21 @@
4040
"ajv": "^8.2.0",
4141
"coveralls": "^3.1.1",
4242
"eslint": "^7.8.1",
43-
"istanbul": "^0.4.4",
4443
"mocha": "^9.0.3",
44+
"nyc": "^15.1.0",
4545
"pre-commit": "^1.1.3"
4646
},
4747
"peerDependencies": {
4848
"ajv": ">=8.0.0"
49+
},
50+
"nyc": {
51+
"exclude": [
52+
"**/spec/**",
53+
"node_modules"
54+
],
55+
"reporter": [
56+
"lcov",
57+
"text-summary"
58+
]
4959
}
5060
}

0 commit comments

Comments
 (0)