Skip to content

Commit 718ce68

Browse files
committed
Update dev-dependencies
1 parent b7ae62b commit 718ce68

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
*.log
3+
.nyc_output/
34
coverage/
45
node_modules/
56
unist-util-inspect.js

package.json

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,44 +9,37 @@
99
"unist",
1010
"inspect"
1111
],
12-
"dependencies": {
13-
"is-empty": "1.0.0"
14-
},
15-
"files": [
16-
"index.js"
17-
],
18-
"repository": {
19-
"type": "git",
20-
"url": "https://github.com/wooorm/unist-util-inspect.git"
21-
},
12+
"repository": "https://github.com/wooorm/unist-util-inspect",
2213
"bugs": "https://github.com/wooorm/unist-util-inspect/issues",
2314
"author": "Titus Wormer <[email protected]> (http://wooorm.com)",
2415
"contributors": [
2516
"Titus Wormer <[email protected]> (http://wooorm.com)"
2617
],
18+
"files": [
19+
"index.js"
20+
],
21+
"dependencies": {
22+
"is-empty": "1.0.0"
23+
},
2724
"devDependencies": {
2825
"browserify": "^13.0.0",
2926
"chalk": "^1.0.0",
3027
"esmangle": "^1.0.1",
31-
"istanbul": "^0.4.0",
32-
"remark": "^4.0.0",
33-
"remark-comment-config": "^3.0.0",
34-
"remark-github": "^4.0.1",
35-
"remark-lint": "^3.0.0",
36-
"remark-slug": "^4.0.0",
37-
"remark-validate-links": "^3.0.0",
38-
"retext": "^2.0.0",
28+
"nyc": "^9.0.1",
29+
"remark-cli": "^2.0.0",
30+
"remark-preset-wooorm": "^1.0.0",
31+
"retext": "^4.0.0",
3932
"tape": "^4.4.0",
4033
"xo": "^0.17.1"
4134
},
4235
"scripts": {
43-
"build-md": "remark . --quiet --frail",
36+
"build-md": "remark . --quiet --frail --output",
4437
"build-bundle": "browserify index.js --bare -s unistUtilInspect > unist-util-inspect.js",
4538
"build-mangle": "esmangle unist-util-inspect.js > unist-util-inspect.min.js",
4639
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
4740
"lint": "xo",
48-
"test-api": "node test.js",
49-
"test-coverage": "istanbul cover test.js",
41+
"test-api": "node test",
42+
"test-coverage": "nyc --reporter lcov tape test.js",
5043
"test": "npm run build && npm run lint && npm run test-coverage"
5144
},
5245
"xo": {
@@ -58,5 +51,14 @@
5851
"ignore": [
5952
"unist-util-inspect.js"
6053
]
54+
},
55+
"nyc": {
56+
"check-coverage": true,
57+
"lines": 100,
58+
"functions": 100,
59+
"branches": 100
60+
},
61+
"remarkConfig": {
62+
"presets": "wooorm"
6163
}
6264
}

0 commit comments

Comments
 (0)