-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
{
"name": "licensee",
"description": "check dependency licenses against rules",
"version": "11.1.1",
"author": "Kyle E. Mitchell <[email protected]> (https://kemitchell.com/)",
"contributors": [
"Jakob Krigovsky <[email protected]>",
"Brett Zamir <[email protected]>",
"Andrew Monks <[email protected]>"
],
"dependencies": {
"@blueoak/list": "^15.0.0",
"@npmcli/arborist": "^7.2.1",
"correct-license-metadata": "^1.4.0",
"docopt": "^0.6.2",
"hasown": "^2.0.0",
"npm-license-corrections": "^1.6.2",
"semver": "^7.6.0",
"spdx-expression-parse": "^4.0.0",
"spdx-expression-validate": "^2.0.0",
"spdx-osi": "^3.0.0",
"spdx-whitelisted": "^1.0.0"
},
"bin": "./licensee",
"files": [
"LICENSE",
"index.js",
"licensee"
],
"devDependencies": {
"aud": "^2.0.4",
"ls-engines": "^0.9.3",
"rimraf": "^3.0.2",
"run-parallel": "^1.2.0",
"spawn-sync": "^2.0.0",
"standard": "^14.3.4",
"tap": "^16.3.0"
},
"license": "Apache-2.0",
"repository": "jslicense/licensee.js",
"scripts": {
"licenses": "./licensee --errors-only",
"lint": "standard index.js licensee tests/**/*.js",
"pretest": "npm run lint",
"postlint": "ls-engines --current",
"tests-only": "tap --no-check-coverage tests/unit.test.js tests/**/test.js",
"test": "npm run tests-only",
"posttest": "aud --production"
},
"engines": {
"node": "^18.12 || ^20.9 || >= 22.7"
}
}