-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 961 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 961 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
{
"name": "webscope.js",
"version": "1.5.0",
"description": "Educational defensive web reconnaissance tool for learning security posture analysis",
"main": "src/scanner.js",
"bin": {
"webscope.js": "./bin/webscope.js"
},
"scripts": {
"start": "node bin/webscope.js",
"serve": "node bin/webscope.js serve",
"scan": "node bin/webscope.js scan",
"scan:rust": "node bin/webscope.js scan --engine rust",
"build:rust-engine": "cargo build --release --manifest-path engines/rust-scanner/Cargo.toml",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"security",
"defensive",
"reconnaissance",
"headers",
"tls",
"dns"
],
"author": "voltsparx <voltsparx@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"express": "^4.18.2",
"inquirer": "^9.2.0"
},
"engines": {
"node": ">=16.0.0"
}
}