File tree 4 files changed +12
-124
lines changed
4 files changed +12
-124
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "root": true,
3
+
4
+ "extends": "@ljharb",
5
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
22
},
23
23
"dependencies" : {},
24
24
"devDependencies" : {
25
+ "@ljharb/eslint-config" : " ^15.0.2" ,
25
26
"auto-changelog" : " ^1.16.2" ,
26
27
"covert" : " ^1.1.0" ,
27
- "jscs " : " ^2.1 .0" ,
28
+ "eslint " : " ^6.6 .0" ,
28
29
"tape" : " ^4.0.3"
29
30
},
30
31
"license" : " MIT" ,
35
36
}
36
37
],
37
38
"scripts" : {
38
- "test" : " npm run lint && node test/index.js && npm run coverage-quiet" ,
39
+ "pretest" : " npm run lint" ,
40
+ "test" : " node test && npm run coverage -- --quiet" ,
39
41
"coverage" : " covert test/index.js" ,
40
- "coverage-quiet" : " covert test/index.js --quiet" ,
41
- "lint" : " jscs *.js */*.js" ,
42
+ "lint" : " eslint ." ,
42
43
"version" : " auto-changelog && git add CHANGELOG.md" ,
43
44
"postversion" : " auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \" v$(node -e \" console.log(require('./package.json').version)\" )\" "
44
45
},
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
1
3
var test = require ( 'tape' ) ;
2
4
3
5
var isObject = require ( '../index' ) ;
You can’t perform that action at this time.
0 commit comments