Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed May 5, 2018
1 parent b55d6f4 commit 0c4156b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"vfile-location": "^2.0.0"
},
"devDependencies": {
"browserify": "^14.0.0",
"browserify": "^16.0.0",
"esmangle": "^1.0.0",
"mdast-comment-marker": "^1.0.2",
"nyc": "^11.0.0",
"remark": "^8.0.0",
"remark-cli": "^4.0.0",
"remark-preset-wooorm": "^3.0.0",
"remark-toc": "^4.0.0",
"remark": "^9.0.0",
"remark-cli": "^5.0.0",
"remark-preset-wooorm": "^4.0.0",
"remark-toc": "^5.0.0",
"tape": "^4.0.0",
"xo": "^0.18.0"
"xo": "^0.21.0"
},
"scripts": {
"build-md": "remark . -qfo",
Expand All @@ -51,6 +51,9 @@
"space": true,
"esnext": false,
"rules": {
"no-var": "off",
"prefer-arrow-callback": "off",
"object-shorthand": "off",
"guard-for-in": "off"
},
"ignores": [
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var test = require('tape');
var remark = require('remark');
var toc = require('remark-toc');
var mdastMarker = require('mdast-comment-marker');
var control = require('./');
var control = require('.');

test('control()', function (t) {
t.throws(function () {
Expand Down

0 comments on commit 0c4156b

Please sign in to comment.