forked from simplecrawler/simplecrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 960 Bytes
/
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
{
"name": "simplecrawler",
"description": "Very straigntforward web crawler. Uses EventEmitter. Generates queue statistics and has a basic cache mechanism with extensible backend.",
"version": "0.2.6",
"homepage": "http://github.com/cgiffard/node-simplecrawler",
"author": "Christopher Giffard <[email protected]>",
"keywords": [
"crawler",
"spider",
"cache",
"queue",
"simplecrawler",
"eventemitter"
],
"scripts": {
"test": "mocha -R spec -t 4000"
},
"bin": {
"crawl": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "http://github.com/cgiffard/node-simplecrawler.git"
},
"bugs": {
"url": "https://github.com/cgiffard/node-simplecrawler/issues"
},
"main": "./lib/index.js",
"engines": {
"node": ">=0.4.0"
},
"devDependencies": {
"mocha": "~1.8.1",
"jshint": "~0.7.x",
"chai": "~1.2.0"
},
"dependencies": {
"URIjs": "~1.8.3"
}
}