Skip to content

Commit

Permalink
[Dev Deps] update eslint, @ljharb/eslint-config, tape; add `saf…
Browse files Browse the repository at this point in the history
…e-publish-latest`
  • Loading branch information
ljharb committed Jan 29, 2020
1 parent 86a758d commit 09e2e53
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions package.json
Expand Up @@ -9,6 +9,7 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"prepublish": "safe-publish-latest",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "node test",
Expand Down Expand Up @@ -41,14 +42,15 @@
],
"dependencies": {},
"devDependencies": {
"@ljharb/eslint-config": "^15.0.2",
"@ljharb/eslint-config": "^16.0.0",
"auto-changelog": "^1.16.2",
"covert": "^1.1.1",
"eslint": "^6.6.0",
"tape": "^4.11.0"
"eslint": "^6.8.0",
"safe-publish-latest": "^1.1.4",
"tape": "^5.0.0-next.4"
},
"testling": {
"files": "test.js",
"files": "test/index.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
Expand Down
2 changes: 1 addition & 1 deletion test.js → test/index.js
@@ -1,7 +1,7 @@
'use strict';

var test = require('tape');
var isNegativeZero = require('./');
var isNegativeZero = require('../');

test('not negative zero', function (t) {
t.notOk(isNegativeZero(), 'undefined is not negative zero');
Expand Down

0 comments on commit 09e2e53

Please sign in to comment.