Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Commit

Permalink
Fixes #113 nsp deprecation (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
zrrrzzt committed Aug 1, 2018
1 parent 8043694 commit a17e088
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"node": ">=10.7.0"
},
"scripts": {
"test": "standard && nsp check && ava",
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
Expand Down Expand Up @@ -59,7 +59,6 @@
"devDependencies": {
"ava": "0.25.0",
"coveralls": "3.0.2",
"nsp": "3.2.1",
"micro-dev": "3.0.0",
"nyc": "12.0.2",
"standard": "11.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/modules/dev-dependencies-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const test = require('ava')
const pkg = require('../../package.json')
const dependencies = pkg.devDependencies || {}
const dropModules = ['micro-dev', 'nsp']
const dropModules = ['micro-dev']
const isDropped = (module) => !dropModules.includes(module)

if (Object.keys(dependencies).length > 0) {
Expand Down

0 comments on commit a17e088

Please sign in to comment.