-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 969 Bytes
/
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
{
"name": "hounds",
"version": "1.0.1",
"description": "Hounds will crawl a website based on scope and print out the associated urls",
"main": "hounds.js",
"dependencies": {
"bufferutil": "^4.0.6",
"node-fetch": "^3.2.0",
"normalize-url": "^8.0.0",
"puppeteer": "^19.2.2",
"puppeteer-core": "^19.2.2",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"utf-8-validate": "^5.0.8",
"valid-url": "^1.0.9",
"yargs": "^17.3.1"
},
"devDependencies": {
"eslint": "^8.27.0"
},
"scripts": {
"test": "node ./hounds.js -u https://www.google.com -s google.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wdahlenburg/Hounds.git"
},
"keywords": [
"crawler"
],
"author": "Wyatt Dahlenburg",
"license": "ISC",
"bugs": {
"url": "https://github.com/wdahlenburg/Hounds/issues"
},
"homepage": "https://github.com/wdahlenburg/Hounds#readme"
}