-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "node-license-validator",
"version": "1.3.2",
"description": "Validate the licenses of your dependencies against a list",
"main": "index.js",
"scripts": {
"test": "mocha --bail test.js test-cli.js",
"report": "istanbul cover -x test.js -x node_modules node_modules/.bin/_mocha -- -u bdd -R spec --bail test.js;jshint index.js cli.js",
"lint": "jshint index.js cli.js"
},
"bin": {
"node-license-validator": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myndzi/node-license-validator.git"
},
"keywords": [
"nlf",
"validator",
"tool",
"cli"
],
"author": "Kris Reeves",
"license": "ISC",
"bugs": {
"url": "https://github.com/myndzi/node-license-validator/issues"
},
"homepage": "https://github.com/myndzi/node-license-validator#readme",
"dependencies": {
"nlf": "^2.1.1",
"npm-package-arg": "^8.1.5",
"semver": "^7.3.5",
"spdx-expression-validate": "^2.0.0",
"spdx-satisfies": "^5.0.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jshint": "^2.13.1",
"mocha": "^9.1.2",
"should": "^13.2.3"
}
}