Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
chore(package.json): do not watch test files during preversion
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Aug 3, 2016
1 parent 9661ff6 commit 133ec0d
Showing 1 changed file with 43 additions and 42 deletions.
85 changes: 43 additions & 42 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
{
"name": "node-html-light",
"version": "0.0.0",
"description": "Wrapper around htmlparser2 providing a more object oriented interface",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/spec --watch --check-leaks",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- test/spec --check-leaks",
"docs": "jsdoc lib --destination docs --configure .jsdoc.json --readme README.md ",
"preversion": "npm test",
"version": "npm run changelog && npm run docs && git add -A CHANGELOG.md docs",
"postversion": "git push && git push --tags",
"release-major": "npm version major -m \"chore(release): v%s\"",
"release-minor": "npm version minor -m \"chore(release): v%s\"",
"release-patch": "npm version patch -m \"chore(release): v%s\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"bugs": {
"url": "https://github.com/stfsy/node-html-light/issues"
},
"homepage": "https://github.com/stfsy/node-html-light#readme",
"repository": {
"type": "git",
"url": "https://github.com/stfsy/node-html-light"
},
"keywords": [
"node"
],
"author": "Stefan Pfaffel",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"conventional-changelog": "^1.1.0",
"istanbul": "^0.4.4",
"minami": "^1.1.1",
"mocha": "^2.5.3"
},
"dependencies": {
"fs-promise": "^0.5.0",
"htmlparser2": "^3.9.1"
}
}
"name": "node-html-light",
"version": "0.0.0",
"description": "Wrapper around htmlparser2 providing a more object oriented interface",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/spec --watch --check-leaks",
"testRelease": "mocha test/spec --check-leaks",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- test/spec --check-leaks",
"docs": "jsdoc lib --destination docs --configure .jsdoc.json --readme README.md ",
"preversion": "npm run testRelease",
"version": "npm run changelog && git add -A CHANGELOG.md",
"postversion": "git push && git push --tags",
"release-major": "npm version major -m \"chore(release): v%s\"",
"release-minor": "npm version minor -m \"chore(release): v%s\"",
"release-patch": "npm version patch -m \"chore(release): v%s\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"bugs": {
"url": "https://github.com/stfsy/node-html-light/issues"
},
"homepage": "https://github.com/stfsy/node-html-light#readme",
"repository": {
"type": "git",
"url": "https://github.com/stfsy/node-html-light"
},
"keywords": [
"node"
],
"author": "Stefan Pfaffel",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"conventional-changelog": "^1.1.0",
"istanbul": "^0.4.4",
"minami": "^1.1.1",
"mocha": "^2.5.3"
},
"dependencies": {
"fs-promise": "^0.5.0",
"htmlparser2": "^3.9.1"
}
}

0 comments on commit 133ec0d

Please sign in to comment.