forked from google/js-green-licenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "js-green-licenses",
"version": "3.0.1",
"description": "JavaScript package.json license checker",
"main": "build/src/checker.js",
"bin": {
"jsgl": "build/src/cli.js"
},
"files": [
"build/src"
],
"types": "build/src/checker",
"scripts": {
"test": "c8 mocha build/test",
"lint": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"start": "node build/src/cli.js",
"prepare": "npm run compile",
"pretest": "npm run compile",
"license-check": "node build/src/cli.js --local ."
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"npm",
"package",
"license"
],
"author": "Google LLC",
"license": "Apache-2.0",
"repository": "github:google/js-green-licenses",
"c8": {
"exclude": [
"build/test"
]
},
"dependencies": {
"gaxios": "^4.0.0",
"meow": "^9.0.0",
"npm-package-arg": "^8.0.0",
"package-json": "^7.0.0",
"semver": "^7.3.2",
"spdx-correct": "^3.0.0",
"spdx-satisfies": "^5.0.0",
"strip-json-comments": "^3.0.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^14.0.0",
"@types/npm-package-arg": "^6.0.0",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.2.0",
"@types/spdx-correct": "^2.0.0",
"@types/spdx-satisfies": "^0.1.0",
"@types/strip-json-comments": "0.0.30",
"c8": "^7.4.0",
"gts": "^3.0.0",
"inline-fixtures": "^1.1.0",
"make-dir": "^3.0.0",
"mocha": "^9.0.0",
"mock-fs": "^4.4.2",
"nock": "^13.0.0",
"proxyquire": "^2.0.1",
"typescript": "~4.4.4"
}
}