-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
57
58
{
"name": "licenseleak",
"version": "0.4.0",
"description": "License compliance scanner — find AGPL/GPL/SSPL contamination in your codebase before your acquirer does.",
"keywords": [
"license",
"compliance",
"agpl",
"gpl",
"sspl",
"spdx",
"scanner",
"audit",
"open-source"
],
"homepage": "https://github.com/licenseleak/cli#readme",
"bugs": {
"url": "https://github.com/licenseleak/cli/issues",
"email": "support@licenseleak.com"
},
"repository": {
"type": "git",
"url": "https://github.com/licenseleak/cli.git"
},
"license": "Apache-2.0",
"author": "LicenseLeak",
"type": "module",
"main": "dist/index.js",
"bin": {
"licenseleak": "bin/licenseleak.mjs"
},
"files": [
"bin",
"dist",
"spdx-snapshot.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18.17"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "node bin/licenseleak.mjs",
"refresh-snapshot": "node scripts/refresh-snapshot.mjs",
"test": "node --test --import tsx ./src/__tests__/*.test.ts"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "4.21.0",
"typescript": "~5.9.2"
}
}