-
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) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "bluehawk-api-key-finder",
"version": "1.0.0",
"description": "Chrome extension for bug bounty hunters, red teamers, and security researchers - detects hardcoded API keys, JWT tokens, secrets, and credentials in JavaScript with AST analysis, entropy scoring, and token validation",
"private": true,
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/parser": "^7.23.6",
"@babel/traverse": "^7.23.6",
"source-map": "^0.7.4",
"@webassemblyjs/wasm-parser": "^1.12.1"
},
"optionalDependencies": {
"@tensorflow/tfjs": "^4.17.0"
},
"devDependencies": {
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"copy-webpack-plugin": "^12.0.2",
"terser-webpack-plugin": "^5.3.10",
"jest": "^29.7.0",
"express": "^4.18.2",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"babel-jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"chrome-extension",
"security",
"api-key",
"secret-detection",
"penetration-testing",
"bug-bounty"
],
"license": "MIT"
}