-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.24 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
{
"name": "package-policy",
"version": "0.0.1",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"package-policy": "dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"maintainers": [
"wille <[email protected]>"
],
"scripts": {
"test": "tsx --test",
"build": "rollup -c rollup.config.js"
},
"files": [
"./dist"
],
"type": "module",
"author": "wille",
"repository": {
"type": "git",
"url": "git+https://github.com/wille/package-policy.git"
},
"license": "MIT",
"description": "A tool to enforce package policies to protect against supply chain attacks",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/debug": "^4.1.12",
"@types/node": "22.10.1",
"@types/semver": "^7.5.8",
"prettier": "^3.4.2",
"rollup": "4.28.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"chalk": "5.3.0",
"commander": "^12.1.0",
"debug": "^4.4.0",
"parse-duration": "^1.1.1",
"read": "4.0.0",
"semver": "7.6.3",
"test": "file:./test",
"yaml": "2.6.1"
},
"keywords": [
"npm",
"yarn",
"pnpm",
"cve",
"audit",
"security",
"dependencies"
]
}