-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "infra-starter-pack",
"version": "0.1.1",
"description": "Scan any repo and generate evidence-based docs, CI, security checks, and runtime QA.",
"author": "Hamed Rabah",
"type": "module",
"sideEffects": false,
"bin": {
"infra-starter": "bin/infra-starter.js"
},
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"README.md",
"action.yml",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js",
"test:coverage": "node --test --experimental-test-coverage test/*.test.js",
"check": "node --check bin/infra-starter.js && node --check src/*.js && npm test",
"demo": "node bin/infra-starter.js scan test/fixtures/basic",
"prepack": "npm run check"
},
"keywords": [
"mintlify",
"replay.io",
"documentation",
"qa",
"github",
"developer-tools",
"security",
"trufflehog"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hamedrabah/infra-starter-pack.git"
},
"bugs": {
"url": "https://github.com/hamedrabah/infra-starter-pack/issues"
},
"homepage": "https://github.com/hamedrabah/infra-starter-pack#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^15.0.0",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1",
"yaml": "^2.8.1"
}
}