-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 983 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 983 Bytes
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
{
"name": "@shivam-sharma/codeguardian",
"version": "2.4.4",
"description": "CLI to scan repos for sensitive secrets before pushing",
"main": "src/index.js",
"type": "module",
"bin": {
"codeguardian": "src/cli.js"
},
"scripts": {
"scan": "node ./src/cli.js"
},
"files": [
"src",
"default-config.json",
"LICENSE",
"README.md"
],
"keywords": [
"secrets",
"jwt",
"aws",
"api",
"key",
"scanner"
],
"author": "Shivam Sharma <meshivam81@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/shivarm/code-guardian.git"
},
"bugs": {
"url": "https://github.com/shivarm/code-guardian/issues"
},
"homepage": "https://github.com/shivarm/code-guardian#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"ignore": "^7.0.5"
},
"engines": {
"node": ">=20.0.0"
}
}