forked from bda-research/node-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.56 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
64
65
66
67
68
69
{
"name": "crawler",
"version": "0.4.1",
"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. Scraping should be simple and fun!",
"keywords": [
"dom",
"javascript",
"crawling",
"spider",
"scraper",
"scraping",
"jquery",
"crawler"
],
"maintainers": [
{
"name": "Sylvain Zimmer",
"email": "[email protected]",
"url": "http://sylvinus.org/"
},
{
"name": "Paul Valla",
"email": "[email protected]",
"url": "http://www.pol.ninja/"
}
],
"bugs": {
"url": "http://github.com/sylvinus/node-crawler/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/sylvinus/node-crawler/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sylvinus/node-crawler.git"
},
"dependencies": {
"cheerio": "0.18.0",
"generic-pool": "2.1.1",
"iconv": "2.1.4",
"iconv-lite": "0.4.4",
"jschardet": "1.1.0",
"lodash": "2.4.1",
"request": "2.42.0"
},
"optionalDependencies": {
"iconv": "*"
},
"devDependencies": {
"chai": "1.9.2",
"mocha": "1.21.4",
"mocha-testdata": "1.1.0",
"sinon": "1.11.1",
"jsdom": "0.11.1"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec --bail --timeout 10000 tests/*.js"
},
"engines": [
"node >=0.8.x"
],
"directories": {
"lib": "lib"
},
"main": "./lib/crawler"
}