Skip to content

Commit dc5a732

Browse files
committed
Update dev-dependencies
1 parent 3c3b1d7 commit dc5a732

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ try {
1313
} catch (err) { /* Empty. */ }
1414

1515
/* Expose. */
16-
module.exports = exports = wrap(unist);
16+
exports = wrap(unist);
17+
module.exports = exports;
1718

1819
exports.parent = wrap(parent);
1920
exports.text = wrap(text);

package.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"index.js"
2424
],
2525
"devDependencies": {
26-
"browserify": "^13.0.1",
26+
"browserify": "^14.0.1",
2727
"esmangle": "^1.0.1",
28-
"nyc": "^9.0.1",
29-
"remark-cli": "^2.0.0",
30-
"remark-preset-wooorm": "^1.0.0",
28+
"nyc": "^11.0.0",
29+
"remark-cli": "^3.0.0",
30+
"remark-preset-wooorm": "^3.0.0",
3131
"tape": "^4.0.0",
32-
"xo": "^0.17.0"
32+
"xo": "^0.18.0"
3333
},
3434
"scripts": {
3535
"build-md": "remark . -qfo",
@@ -43,6 +43,7 @@
4343
},
4444
"xo": {
4545
"space": true,
46+
"esnext": false,
4647
"rules": {
4748
"no-eq-null": "off",
4849
"eqeqeq": "off"
@@ -58,6 +59,8 @@
5859
"branches": 100
5960
},
6061
"remarkConfig": {
61-
"presets": "wooorm"
62+
"plugins": [
63+
"preset-wooorm"
64+
]
6265
}
6366
}

0 commit comments

Comments
 (0)