-
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.26 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.26 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": "@penumbraforge/gate",
"version": "2.0.1",
"description": "Gate: Zero-config secret scanner with auto-fix. Finds secrets, fixes them, for free.",
"main": "src/cli/scanner.js",
"bin": {
"gate": "bin/gate.js"
},
"scripts": {
"test": "jest",
"test:cli": "jest --selectProjects cli",
"test:watch": "jest --watch",
"prepublishOnly": "npm test && node bin/gate.js scan --all"
},
"keywords": [
"security",
"secrets",
"pre-commit",
"github-actions",
"pii",
"compliance",
"zero-trust"
],
"author": "PenumbraForge",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/penumbraforge/gate.git"
},
"homepage": "https://github.com/penumbraforge/gate",
"bugs": {
"url": "https://github.com/penumbraforge/gate/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"bin",
"src/cli",
"!src/cli/__tests__",
"rules",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"jest": "^30.2.0",
"typescript": "^5.9.3"
}
}