-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "sasori-crawl",
"version": "1.0.0",
"description": "Sasori is a dynamic web crawler powered by Puppeteer, designed for lightning-fast endpoint discovery.",
"main": "bin/index.js",
"author": "Karthik UJ",
"contributors": [
{
"name": "Karthik UJ",
"email": "[email protected]",
"url": "https://www.5up3r541y4n.tech/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/karthikuj/sasori.git"
},
"bin": {
"sasori": "bin/index.js"
},
"scripts": {
"start": "node .",
"lint": "npx eslint . --fix"
},
"keywords": [
"crawler",
"crawling",
"scraping",
"endpoint-discovery",
"puppeteer",
"dynamic",
"automation",
"security",
"dast",
"infosec"
],
"dependencies": {
"@puppeteer/replay": "^2.13.4",
"chalk": "^4",
"cheerio": "^1.0.0-rc.12",
"joi": "^17.12.2",
"puppeteer": "^22.13.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0"
}
}