Skip to content

Commit

Permalink
chore(package.json) scripts created
Browse files Browse the repository at this point in the history
  • Loading branch information
rimiti committed Jan 22, 2019
1 parent ef1fd6b commit 44caa8c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"description": "SuperAgent driven library for testing HTTP servers",
"main": "index.js",
"author": "TJ Holowaychuk",
"contributors": [
"Dimitri DO BAIRRO <dimitri.dobairro@dimsolution.com>"
],
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -22,8 +25,10 @@
"testing"
],
"scripts": {
"pretest": "npm install",
"test": "eslint lib/**/*.js test/**/*.js index.js && nyc --reporter=html --reporter=text mocha --exit --require should --reporter spec --check-leaks",
"lint": "eslint lib/**/*.js test/**/*.js index.js",
"lint:fix": "eslint --fix lib/**/*.js test/**/*.js index.js",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha --exit --require should --reporter spec --check-leaks",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
Expand Down

0 comments on commit 44caa8c

Please sign in to comment.