-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "security-first-aid",
"version": "0.1.2",
"description": "Deterministic, local-first security scanner for repositories and CI/CD configuration.",
"homepage": "https://github.com/ExceptionRegret/security-first-aid#readme",
"type": "module",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ExceptionRegret/security-first-aid.git"
},
"bugs": {
"url": "https://github.com/ExceptionRegret/security-first-aid/issues"
},
"exports": {
".": "./src/index.js"
},
"files": [
"src",
"scripts/postinstall.mjs",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"bin": {
"sfa": "src/cli/index.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"test": "node --test --experimental-test-isolation=none",
"check": "node --test --experimental-test-isolation=none && node scripts/smoke.mjs",
"scan:fixture": "node ./src/cli/index.js scan ./tests/fixtures/insecure-service --format markdown",
"pack:check": "npm pack --dry-run --cache ./.npm-cache",
"release:validate": "node scripts/validate-release.mjs",
"release:notes": "node scripts/extract-release-notes.mjs",
"release:check": "npm run check && npm run release:validate && npm run pack:check"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"security",
"scanner",
"cli",
"static-analysis",
"cicd"
],
"license": "MIT"
}