-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "secure-install",
"version": "1.0.2",
"description": "Secure npm package installer with risk analysis, dependency scanning, and vulnerability detection",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js",
"./cli": "./bin/cli.js"
},
"bin": {
"secure-install": "bin/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "echo \"No tests yet\" && exit 0",
"prepublishOnly": "npm test"
},
"keywords": [
"security",
"npm",
"install",
"vulnerability",
"scanner",
"audit",
"safety",
"malware",
"supply-chain",
"typosquatting",
"security-audit"
],
"author": "Secure Install Team",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"fast-levenshtein": "^3.0.0",
"ora": "^7.0.1",
"prompts": "^2.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openidle-dev/secure_install.git"
},
"bugs": {
"url": "https://github.com/openidle-dev/secure_install/issues"
},
"homepage": "https://github.com/openidle-dev/secure_install#readme",
"funding": {
"type": "github",
"url": "https://github.com/openidle-dev/secure_install"
}
}