File tree 3 files changed +9
-8
lines changed
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
package-lock = false
2
- audit-level = high
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"main" : " index.js" ,
8
8
"scripts" : {
9
+ "prepublish" : " safe-publish-latest" ,
9
10
"pretest" : " npm run lint" ,
10
11
"test" : " npm run tests-only" ,
11
12
"tests-only" : " node --harmony --es-staging test" ,
12
13
"posttest" : " npx aud" ,
13
- "coverage" : " covert test.js" ,
14
+ "coverage" : " covert test/index .js" ,
14
15
"lint" : " eslint ."
15
16
},
16
17
"repository" : {
26
27
],
27
28
"dependencies" : {},
28
29
"devDependencies" : {
29
- "@ljharb/eslint-config" : " ^13 .1.1 " ,
30
+ "@ljharb/eslint-config" : " ^14 .1.0 " ,
30
31
"covert" : " ^1.1.1" ,
31
- "eslint" : " ^5.16 .0" ,
32
+ "eslint" : " ^6.4 .0" ,
32
33
"foreach" : " ^2.0.5" ,
33
34
"indexof" : " ^0.0.1" ,
34
35
"is" : " ^3.3.0" ,
35
- "semver" : " ^6.1.1" ,
36
- "tape" : " ^4.10.2"
36
+ "safe-publish-latest" : " ^1.1.3" ,
37
+ "semver" : " ^6.3.0" ,
38
+ "tape" : " ^4.11.0"
37
39
},
38
40
"testling" : {
39
- "files" : " test.js" ,
41
+ "files" : " test/index .js" ,
40
42
"browsers" : [
41
43
" iexplore/6.0..latest" ,
42
44
" firefox/3.0..6.0" ,
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
var test = require ( 'tape' ) ;
4
- var isDate = require ( './' ) ;
4
+ var isDate = require ( '.. /' ) ;
5
5
var hasSymbols = typeof Symbol === 'function' && typeof Symbol ( '' ) === 'symbol' ;
6
6
7
7
test ( 'not Dates' , function ( t ) {
You can’t perform that action at this time.
0 commit comments