Skip to content

Commit 3c8b138

Browse files
committed
Update dev-dependencies
1 parent 5a27cee commit 3c8b138

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
],
2626
"dependencies": {},
2727
"devDependencies": {
28-
"browserify": "^14.1.0",
28+
"browserify": "^16.0.0",
2929
"esmangle": "^1.0.0",
3030
"nyc": "^11.0.0",
31-
"remark-cli": "^4.0.0",
32-
"remark-preset-wooorm": "^3.0.0",
31+
"remark-cli": "^5.0.0",
32+
"remark-preset-wooorm": "^4.0.0",
3333
"tape": "^4.5.1",
34-
"xo": "^0.18.1"
34+
"xo": "^0.20.0"
3535
},
3636
"scripts": {
3737
"build-md": "remark . --quiet --frail --output",
@@ -52,6 +52,11 @@
5252
"xo": {
5353
"space": true,
5454
"esnext": false,
55+
"rules": {
56+
"guard-for-in": "off",
57+
"no-var": "off",
58+
"prefer-arrow-callback": "off"
59+
},
5560
"ignores": [
5661
"unist-util-stringify-position.js"
5762
]

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
var test = require('tape');
4-
var stringify = require('./');
4+
var stringify = require('.');
55

66
test('stringifyPosition', function (t) {
77
t.equal(stringify(), null, 'should return `null` with `undefined`');

0 commit comments

Comments
 (0)