Skip to content

Commit

Permalink
fix: Revert references to npx for node 6,7
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehall314 committed Aug 27, 2019
1 parent 2edb4c6 commit b24ca46
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
"license": "MIT",
"dependencies": {},
"scripts": {
"pretest": "npx eslint 'lib/*.js' 'test/*.js'",
"build": "npx babel lib -d dist",
"test": "npm run build && npx tape test",
"test:cover": "npm run build && npx nyc --reporter=lcov --all npx tape test"
"pretest": "./node_modules/.bin/eslint 'lib/*.js' 'test/*.js'",
"build": "./node_modules/.bin/babel lib -d dist",
"real-test": "./node_modules/.bin/tape test",
"test": "npm run build && npm run real-test",
"test:cover": "npm run build && ./node_modules/.bin/nyc --reporter=lcov --all npm run real-test"
},
"bugs": "http://github.com/digitaldesignlabs/es6-promisify/issues",
"files": [
Expand Down

0 comments on commit b24ca46

Please sign in to comment.