Skip to content

Commit

Permalink
Use double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaovieira committed Dec 31, 2019
1 parent c5a4cda commit bb554d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"scripts": {
"build": "babel --quiet --out-dir lib src",
"prebuild": "rimraf lib",
"watch": "npm run mocha --watch 'tests/{src,config}'",
"watch": "npm run mocha -- --watch \"tests/{src,config}\"",
"pretest": "linklocal",
"posttest": "eslint .",
"mocha": "cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive -t 5s",
"test": "npm run mocha 'tests/{src,config}'",
"test-compiled": "npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive 'tests/{src,config}'",
"test": "npm run mocha -- \"tests/{src,config}\"",
"test-compiled": "npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive \"tests/{src,config}\"",
"test-all": "npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done",
"prepublish": "npm run build",
"coveralls": "nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"
Expand Down

0 comments on commit bb554d2

Please sign in to comment.