Skip to content

Commit

Permalink
fix(package.json): update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
satblip committed Jun 10, 2020
1 parent b1d038f commit afe8c38
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 @@ -9,11 +9,12 @@
},
"scripts": {
"format": "semistandard --fix",
"test": "mocha --recursive --reporter dot",
"test:spec": "NODE_ENV=test mocha --recursive",
"test:lint": "semistandard --verbose | snazzy",
"test:cover": "nyc --reporter=text-summary --reporter=html npm test",
"test:coveralls": "nyc --reporter=text-lcov npm test | coveralls",
"test:all": "npm run test:lint && npm run test && npm run test:cover && npm run test:coveralls"
"test:cover": "nyc --reporter=lcov --reporter=text-summary npm run test:spec",
"test:coveralls": "nyc npm run test:spec && nyc report --reporter=text-lcov | coveralls",
"test": "npm run test:lint && npm run test:cover",
"test:ci": "npm run test:lint && npm run test:coveralls"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit afe8c38

Please sign in to comment.