forked from bda-research/node-crawler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (58 loc) · 1.34 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
51
52
53
54
55
56
57
58
{
"name": "crawler",
"version": "0.0.3",
"description": "Crawler is a web spider written with Nodejs. It gives you the full power of jQuery on the server to parse a big number of pages as they are downloaded, asynchronously.",
"keywords": [
"dom",
"javascript",
"crawling",
"jquery"
],
"maintainers": [
{
"name": "Sylvain Zimmer",
"email": "[email protected]",
"web": "http://sylvinus.org/"
}
],
"bugs": {
"mail": "[email protected]",
"web": "http://github.com/joshfire/node-crawler/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/joshfire/node-crawler/blob/master/LICENSE.txt"
}
],
"repository":
{
"type": "git",
"url": "http://github.com/joshfire/node-crawler.git"
}
,
"dependencies": {
"request": ">= 0.9.5",
"generic-pool": ">= 1.0.4",
"qunit": ">= 0.0.7",
"htmlparser": ">= 1.6.2",
"jquery": ">= 1.5.1"
},
"os": [
"linux",
"macos",
"win"
],
"cpu": [
"x86",
"ppc",
"x86_64"
],
"engines": [
"node"
],
"directories": {
"lib": "lib"
},
"main": "./lib/crawler"
}