This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(package.json): do not watch test files during preversion
- Loading branch information
Showing
1 changed file
with
43 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |