Skip to content

Commit

Permalink
rename NPM commands
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaskruchten committed Nov 27, 2017
1 parent 08a0924 commit 8339fc1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@
],
"scripts": {
"start": "webpack-dev-server",
"test:lint": "eslint src/*.js* && echo 'eslint: \\033[0;32m'PASS'\\033[0m'",
"test:pretty": "prettier -l \"src/*.js*\" && echo 'prettier: \\033[0;32m'PASS'\\033[0m'",
"test:js": "jest",
"test": "npm run test:lint && npm run test:pretty && npm run test:js",
"lint": "eslint src/*.js**",
"prettier": "prettier --write \"src/*.js*\"",
"lintfix": "eslint src/*.js* --fix",
"test:eslint": "eslint src/*.js* && echo 'eslint: \\033[0;32m'PASS'\\033[0m'",
"test:eslint:fix": "eslint src/*.js* --fix",
"test:prettier": "prettier -l \"src/*.js*\" && echo 'prettier: \\033[0;32m'PASS'\\033[0m'",
"test:prettier:fix": "prettier --write \"src/*.js*\"",
"test:jest": "jest",
"test": "npm run test:eslint && npm run test:prettier && npm run test:jest",
"clean": "rm -f PivotTable.js* PivotTableUI.js* PlotlyRenderers.js* TableRenderers.js* Utilities.js* pivottable.css",
"doPublish": "npm run clean && cp src/pivottable.css . && babel src --out-dir=. --source-maps --presets=env,react --plugins babel-plugin-add-module-exports && npm publish",
"postpublish": "npm run clean",
Expand Down

0 comments on commit 8339fc1

Please sign in to comment.