-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
package.json
File metadata and controls
73 lines (73 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
72
73
{
"name": "backend-code-review--node-js",
"version": "1.3.0",
"description": "Two-mode security scanner for Node.js / TypeScript backends: static SAST on source + PCI / PDPL / secret review on Kibana / Elasticsearch logs. SARIF, baseline, stable rule IDs, CWE / OWASP mapping.",
"keywords": [
"security",
"static-analysis",
"sast",
"appsec",
"sarif",
"typescript",
"nodejs",
"owasp",
"cwe",
"cli",
"pci-dss",
"pdpl",
"kibana",
"elasticsearch",
"log-review",
"secret-scanning"
],
"repository": {
"type": "git",
"url": "https://github.com/example/backend-code-review-node-js.git"
},
"homepage": "https://github.com/example/backend-code-review-node-js#readme",
"bugs": {
"url": "https://github.com/example/backend-code-review-node-js/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"code-review": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && tsc && node -e \"const fs=require('fs');const p='dist/index.js';fs.writeFileSync(p,'#!/usr/bin/env node\\n'+fs.readFileSync(p,'utf-8'));fs.chmodSync(p,0o755);\"",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"bundle": "node scripts/bundle.mjs",
"package:release": "npm run bundle && node scripts/package-release.mjs",
"scan:self": "node dist/index.js --path ./src --format sarif --output bcr-self.sarif --include-heuristics"
},
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"fast-glob": "^3.3.3",
"ignore": "^7.0.5",
"typescript": "^6.0.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/yargs": "^17.0.32",
"esbuild": "^0.25.12",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2"
}
}