-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 997 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
38
39
40
41
42
{
"name": "orbweaver",
"version": "0.1.4",
"description": "A simple webcrawler that prints out the URLs of the pages it encounters. Runs in parallel, up to a limit you specify.",
"main": "lib/orbweaver.js",
"dependencies": {
"async": "^0.9.0",
"cheerio": "^0.18.0",
"htmlparser2": "^3.8.2",
"lodash": "^2.4.1",
"regexp-quote": "0.0.0",
"request": "^2.49.0",
"yargs": "^1.3.3"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/punkave/orbweaver"
},
"keywords": [
"webcrawler",
"webspider",
"spider",
"crawler",
"load testing",
"load tester",
"siege",
"traffic"
],
"author": "P'unk Avenue LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/punkave/orbweaver/issues"
},
"homepage": "https://github.com/punkave/orbweaver",
"bin": {
"orbweaver": "./bin/orbweaver"
}
}