Skip to content

Commit

Permalink
update standard, use strict in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Dec 14, 2022
1 parent 0aa0138 commit 7d7ed7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"url": "https://github.com/goto-bus-stop/qs-stringify/issues"
},
"devDependencies": {
"standard": "^16.0.3",
"tap-spec": "^5.0.0",
"standard": "^17.0.0",
"tape": "^5.0.0"
},
"homepage": "https://github.com/goto-bus-stop/qs-stringify",
Expand All @@ -26,7 +25,7 @@
},
"scripts": {
"lint": "standard",
"tests-only": "tape test/*.js",
"test": "npm run lint && npm run tests-only | tap-spec"
"tests-only": "node test",
"test": "npm run lint && npm run tests-only"
}
}
3 changes: 3 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* eslint-disable no-var */
'use strict'

var test = require('tape')
var stringify = require('../')

Expand Down

0 comments on commit 7d7ed7a

Please sign in to comment.