Skip to content

Commit f77fec4

Browse files
committed
[Dev Deps] update eslint, @ljharb/eslint-config, semver, tape; add safe-publish-latest
1 parent 49bc482 commit f77fec4

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Diff for: .npmrc

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
package-lock=false
2-
audit-level=high

Diff for: package.json

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
"license": "MIT",
77
"main": "index.js",
88
"scripts": {
9+
"prepublish": "safe-publish-latest",
910
"pretest": "npm run lint",
1011
"test": "npm run tests-only",
1112
"tests-only": "node --harmony --es-staging test",
1213
"posttest": "npx aud",
13-
"coverage": "covert test.js",
14+
"coverage": "covert test/index.js",
1415
"lint": "eslint ."
1516
},
1617
"repository": {
@@ -26,17 +27,18 @@
2627
],
2728
"dependencies": {},
2829
"devDependencies": {
29-
"@ljharb/eslint-config": "^13.1.1",
30+
"@ljharb/eslint-config": "^14.1.0",
3031
"covert": "^1.1.1",
31-
"eslint": "^5.16.0",
32+
"eslint": "^6.4.0",
3233
"foreach": "^2.0.5",
3334
"indexof": "^0.0.1",
3435
"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"
3739
},
3840
"testling": {
39-
"files": "test.js",
41+
"files": "test/index.js",
4042
"browsers": [
4143
"iexplore/6.0..latest",
4244
"firefox/3.0..6.0",

Diff for: test.js renamed to test/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
var test = require('tape');
4-
var isDate = require('./');
4+
var isDate = require('../');
55
var hasSymbols = typeof Symbol === 'function' && typeof Symbol('') === 'symbol';
66

77
test('not Dates', function (t) {

0 commit comments

Comments
 (0)