-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@dreamhorizonorg/sentinel",
"version": "1.0.0",
"description": "Open-source, zero-dependency tool that blocks compromised packages BEFORE download. Built to counter supply chain and credential theft attacks like Shai-Hulud.",
"type": "module",
"main": "lib/scanner.mjs",
"bin": {
"sentinel": "bin/cli.mjs"
},
"scripts": {
"test": "./sample-test-repo/tests/test.sh",
"test:docker": "./sample-test-repo/tests/test.sh --docker",
"test:docker:npm": "./sample-test-repo/tests/test.sh --docker --npm",
"test:smoke": "node bin/cli.mjs --version && node bin/cli.mjs --help && node bin/cli.mjs scan lodash@4.17.21 --skipNpmAudit=true --enableOsv=false --enableGitHub=false --logMode=quiet && node bin/cli.mjs list --logMode=quiet",
"test:quick": "node bin/cli.mjs --version && node bin/cli.mjs --help && node bin/cli.mjs scan lodash@4.17.21 --skipNpmAudit=true --enableOsv=false --enableGitHub=false --logMode=quiet",
"scan": "node bin/cli.mjs scan",
"security-check": "node bin/cli.mjs scan",
"list": "node bin/cli.mjs list"
},
"keywords": [
"security",
"npm",
"yarn",
"pnpm",
"bun",
"package",
"validation",
"vulnerability",
"audit",
"scanner",
"package-security",
"vulnerability-scanner",
"supply-chain-attack",
"supply-chain-security",
"malicious-packages",
"compromised-packages",
"credential-theft",
"pre-install",
"zero-dependencies",
"npm-audit",
"npm-security",
"osv",
"github-advisories",
"dependency-security",
"package-validation",
"package-manager",
"shai-hulud",
"npm-worm",
"worm",
"worm-detection",
"malware-protection",
"backdoor",
"malware"
],
"author": "DS Horizon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ds-horizon/sentinel.git"
},
"bugs": {
"url": "https://github.com/ds-horizon/sentinel/issues"
},
"homepage": "https://github.com/ds-horizon/sentinel#readme",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}