-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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
{
"name": "license-guard",
"version": "1.0.0",
"type": "module",
"description": "🛡️ License compliance checker for your projects. Scan dependencies, detect problematic licenses, and ensure compliance.",
"main": "src/index.js",
"bin": {
"license-guard": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "find src -name '*.test.js' -exec node --test {} +",
"lint": "eslint src/",
"prepublishOnly": "npm test"
},
"keywords": [
"license",
"compliance",
"dependency",
"audit",
"scanner",
"sbom",
"legal",
"opensource",
"cli",
"enterprise"
],
"author": "DebuggingMax",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DebuggingMax/license-guard.git"
},
"bugs": {
"url": "https://github.com/DebuggingMax/license-guard/issues"
},
"homepage": "https://github.com/DebuggingMax/license-guard#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"spdx-license-list": "^6.9.0",
"spdx-satisfies": "^5.0.1"
},
"devDependencies": {
"eslint": "^9.0.0"
},
"files": [
"src/",
"README.md",
"LICENSE"
]
}