remove quotes around npm script args

This commit is contained in:
Tony Brix 2019-08-27 16:31:33 -05:00
parent c00475155c
commit 228aa3a7bc
1 changed files with 6 additions and 6 deletions

View File

@ -36,12 +36,12 @@
"uuid": "^3.3.3"
},
"scripts": {
"test": "tap --no-cov 'test/**/*.test.js'",
"test:cov": "tap 'test/**/*.test.js'",
"test:cov:html": "tap --coverage-report=html 'test/**/*.test.js'",
"test:watch": "tap -n -w --no-coverage-report 'test/**/*.test.js'",
"lint": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js' | snazzy",
"lint:ci": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js'"
"test": "tap --no-cov test/**/*.test.js",
"test:cov": "tap test/**/*.test.js",
"test:cov:html": "tap --coverage-report=html test/**/*.test.js",
"test:watch": "tap -n -w --no-coverage-report test/**/*.test.js",
"lint": "standard examples/**/*.js lib/**/*.js test/**/*.js | snazzy",
"lint:ci": "standard examples/**/*.js lib/**/*.js test/**/*.js"
},
"husky": {
"hooks": {