Skip to content

Commit

Permalink
package scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tchakabam committed Mar 5, 2018
1 parent 577551e commit 0dbcb77
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@
"docs:clean": "rm -Rf html/docs",
"docs:update": "git add docs/html && git commit docs/html -m 'Update docs'",
"docs:release": "npm run docs:clean && npm run docs:generate && npm run docs:update",
"lint": "jshint src/",
"lint": "npm run lint:src && npm run lint:tests",
"lint:fix": "eslint src/ tests/ --fix",
"lint:src": "eslint src/",
"lint:tests": "eslint tests/",
"precommit": "./scripts/precommit",
"prerelease": "mversion prerelease && npm run build:release",
"pretest": "npm run lint",
"release:pre": "mversion prerelease && npm run build:release",
"release:patch": "mversion p && npm run build:release",
Expand All @@ -48,7 +50,7 @@
"test": "npm run test:unit && npm run test:func",
"test:unit": "karma start karma.conf.js",
"test:unit:watch": "karma start karma.conf.js --auto-watch --no-single-run",
"test:func": "cross-env BABEL_ENV=test mocha --compilers js:babel-register tests/functional/auto/hlsjs.js --timeout 40000"
"test:func": "cross-env BABEL_ENV=test mocha --compilers js:babel-register tests/functional/auto/setup.js --timeout 40000"
},
"dependencies": {
"string.prototype.endswith": "^0.2.0",
Expand All @@ -67,9 +69,11 @@
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.13.1",
"eslint-config-node-style-guide": "^3.0.0",
"eslint-plugin-prettier": "^2.4.0",
"htmlhint": "^0.9.13",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.11.0",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^2.0.0",
Expand Down

0 comments on commit 0dbcb77

Please sign in to comment.