forked from bda-research/node-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (63 loc) · 1.44 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
59
60
61
62
63
{
"name": "crawler",
"version": "0.1.0",
"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": "https://github.com/joshfire/node-crawler.git"
}
,
"dependencies": {
"request": ">= 1.9.8",
"jsdom": ">= 0.2.0",
"generic-pool": ">= 1.0.6",
"qunit": ">= 0.0.7",
"htmlparser": ">= 1.7.3",
"jquery": ">= 1.5.1"
},
"devDependencies": {
"qunit": ">= 0.0.7"
},
"os": [
"linux",
"macos",
"win"
],
"cpu": [
"x86",
"ppc",
"x86_64",
"x64"
],
"engines": [
"node"
],
"directories": {
"lib": "lib"
},
"main": "./lib/crawler"
}