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): add node license validator
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -6,9 +6,10 @@ | |
"scripts": { | ||
"test-watch": "watch \"npm run test\" test/spec lib", | ||
"test": "mocha test/spec --check-leaks", | ||
"nlv": "node-license-validator --allow-licenses WTFPL ISC MIT Apache-2.0 --allow-packages \"[email protected]||1.3.0\" [email protected] [email protected] [email protected] --production --deep", | ||
"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 test", | ||
"preversion": "npm run nlv && npm run test", | ||
"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\"", | ||
|
@@ -48,6 +49,7 @@ | |
"jsdoc": "^3.4.1", | ||
"minami": "^1.1.1", | ||
"mocha": "^2.5.3", | ||
"node-license-validator": "^1.3.0", | ||
"watch": "^0.19.2" | ||
}, | ||
"dependencies": { | ||
|