File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 25
25
],
26
26
"dependencies" : {},
27
27
"devDependencies" : {
28
- "browserify" : " ^14.1 .0" ,
28
+ "browserify" : " ^16.0 .0" ,
29
29
"esmangle" : " ^1.0.0" ,
30
30
"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" ,
33
33
"tape" : " ^4.5.1" ,
34
- "xo" : " ^0.18.1 "
34
+ "xo" : " ^0.20.0 "
35
35
},
36
36
"scripts" : {
37
37
"build-md" : " remark . --quiet --frail --output" ,
52
52
"xo" : {
53
53
"space" : true ,
54
54
"esnext" : false ,
55
+ "rules" : {
56
+ "guard-for-in" : " off" ,
57
+ "no-var" : " off" ,
58
+ "prefer-arrow-callback" : " off"
59
+ },
55
60
"ignores" : [
56
61
" unist-util-stringify-position.js"
57
62
]
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
var test = require ( 'tape' ) ;
4
- var stringify = require ( './ ' ) ;
4
+ var stringify = require ( '.' ) ;
5
5
6
6
test ( 'stringifyPosition' , function ( t ) {
7
7
t . equal ( stringify ( ) , null , 'should return `null` with `undefined`' ) ;
You can’t perform that action at this time.
0 commit comments