This repository was archived by the owner on Jun 26, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.12 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.12 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
{
"name": "huntsman",
"preferGlobal": false,
"private": false,
"version": "0.3.0",
"description": "Super configurable async web spider",
"keywords": [
"spider",
"crawler",
"crawl",
"huntsman",
"robot",
"aync"
],
"repository": {
"type": "git",
"url": "git://github.com/missinglink/huntsman.git"
},
"bugs": {
"url": "http://github.com/missinglink/huntsman/issues"
},
"author": {
"name": "Peter Johnson",
"email": "@insertcoffee",
"url": "https://github.com/missinglink/"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"dependencies": {
"async": "0.7.0",
"cheerio": "^0.19.0",
"regexemitter": "0.2.3",
"semver": "3.0.1",
"superagent": "0.18.0"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha --recursive --reporter spec --compilers coffee:coffee-script/register test"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"coffee-script": "*",
"breakdown": "*"
},
"engines": {
"node": ">0.10.0",
"npm": ">1.1.x"
},
"license": "MIT"
}