-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@mindfiredigital/deepscanbot",
"version": "1.0.0",
"description": "DeepScanBot CLI - A high-performance web crawler and scanner. Recursively crawls websites, respects robots.txt, handles rate-limiting, and produces comprehensive JSON or text reports. Available as a single, self-contained binary via npm.",
"author": "Mindfire Digital",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mindfiredigital/DeepScanBot.git"
},
"homepage": "https://github.com/mindfiredigital/DeepScanBot#readme",
"bugs": {
"url": "https://github.com/mindfiredigital/DeepScanBot/issues"
},
"type": "commonjs",
"preferGlobal": true,
"keywords": [
"crawler",
"scanner",
"cli",
"deepscan",
"web-crawler",
"security",
"vulnerability-scanner",
"binary",
"crawl",
"website-scanner",
"seo",
"audit",
"seo-audit",
"website-audit",
"pentesting",
"bug-bounty"
],
"files": [
"dist/**/*",
"bin/**/*",
"postinstall.js",
"README.md",
"LICENSE.md"
],
"bin": {
"deepscanbot": "bin/deepscanbot"
},
"scripts": {
"postinstall": "node postinstall.js",
"prepublishOnly": "npm run verify",
"build": "goreleaser build --snapshot --clean",
"verify": "node scripts/prepublish-check.js",
"test": "go test ./...",
"pack": "npm pack",
"prepare": "lefthook install",
"lint": "golangci-lint run ./..."
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"release": {
"repositoryUrl": "https://github.com/mindfiredigital/DeepScanBot.git",
"branches": [
"main"
]
}
}