-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 KB
/
package.json
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
{
"name": "securelog-scan",
"version": "3.0.13",
"description": "A CLI tool to scan codebases for potential secrets.",
"main": "dist/index.js",
"author": {
"name": "Onboardbase",
"url": "https://github.com/onboardbase"
},
"bin": {
"sls": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.654.0",
"ahocorasick": "^1.0.2",
"axios": "^1.7.7",
"chalk": "^4",
"cli-table3": "^0.6.5",
"commander": "^11.0.0",
"google-auth-library": "^9.14.1",
"mongodb": "^6.8.1",
"mysql2": "^3.11.3",
"pg": "^8.13.0",
"re2": "^1.21.4",
"redis": "^4.7.0",
"yaml": "^2.5.0"
},
"repository": "https://github.com/Onboardbase/securelog-scan",
"bugs": "https://github.com/Onboardbase/securelog-scan/issues",
"homepage": "https://thesecurelog.com",
"devDependencies": {
"@types/ahocorasick": "^1.0.0",
"@types/node": "^22.6.1",
"@types/pg": "^8.11.10",
"eslint": "^9.11.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-typescript": "^0.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}