forked from bda-research/node-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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": "1.1.2",
"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",
"main": "./lib/crawler.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec --bail --timeout 10000 tests/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bda-research/node-crawler.git"
},
"engine-strict": {
"node": ">=4.0.0"
},
"dependencies": {
"bottleneckp": "~1.1.3",
"charset-parser": "^0.2.0",
"cheerio": "^0.22.0",
"iconv-lite": "^0.4.8",
"lodash": "^4.17.4",
"request": "~2.83.0",
"seenreq": "^0.1.7",
"type-is": "^1.6.14"
},
"devDependencies": {
"chai": "^2.3.0",
"jsdom": "^9.6.0",
"mocha": "^2.2.5",
"mocha-testdata": "^1.1.0",
"sinon": "^1.14.1",
"whacko": "^0.19.1"
},
"keywords": [
"dom",
"javascript",
"crawling",
"spider",
"scraper",
"scraping",
"jquery",
"crawler",
"nodejs"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/bda-research/node-crawler/blob/master/LICENSE.txt"
}
],
"bugs": {
"url": "https://github.com/bda-research/node-crawler/issues"
},
"homepage": "https://github.com/bda-research/node-crawler"
}