forked from simplecrawler/simplecrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "simplecrawler",
"description": "Very straightforward, event driven web crawler. Features a flexible queue interface and a basic cache mechanism with extensible backend.",
"version": "1.1.6",
"homepage": "https://github.com/cgiffard/node-simplecrawler",
"author": "Christopher Giffard <[email protected]>",
"maintainers": [
"Christopher Giffard <[email protected]>",
"Fredrik Ekelund <[email protected]>"
],
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/cgiffard/node-simplecrawler.git"
},
"bugs": {
"url": "https://github.com/cgiffard/node-simplecrawler/issues"
},
"keywords": [
"simple",
"crawler",
"spider",
"cache",
"queue",
"simplecrawler",
"eventemitter"
],
"scripts": {
"lint": "eslint example/ lib/ test/",
"mocha": "mocha -R spec -t 5000",
"test": "npm run lint && npm run mocha",
"docs": "jsdoc -c jsdoc.json"
},
"bin": {
"crawl": "./lib/cli.js"
},
"main": "./lib/index.js",
"dependencies": {
"async": "^2.1.4",
"iconv-lite": "^0.4.13",
"robots-parser": "^1.0.0",
"urijs": "^1.18.11"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^2.0.0",
"jsdoc": "^3.4.0",
"mocha": "^3.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"lib"
]
}