-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 957 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 957 Bytes
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
{
"name": "dryinstall",
"version": "0.8.0",
"description": "npm supply chain attack defense via execution isolation",
"main": "src/loader.js",
"bin": {
"dryinstall": "./bin/dryinstall.js"
},
"scripts": {
"start": "node -r ./src/loader.js index.js",
"demo": "node demo/test-app.js",
"demo:scan": "node demo/scan-demo.js",
"demo:attack": "node demo/attack-test.js"
},
"files": [
"bin/",
"src/",
"README.md"
],
"dependencies": {
"tar": "^7.4.3"
},
"keywords": [
"security",
"npm",
"supply-chain",
"sandbox",
"lifecycle",
"rce",
"defense",
"isolation",
"node-security",
"npm-security",
"trust-cache"
],
"author": "minseok-log",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MinSeok-log/dryinstall.git"
},
"homepage": "https://minseok-log.github.io/dryinstall/",
"engines": {
"node": ">=16.0.0"
}
}