forked from simplecrawler/simplecrawler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 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
{
"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.9",
"homepage": "https://github.com/simplecrawler/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/simplecrawler/simplecrawler.git"
},
"bugs": {
"url": "https://github.com/simplecrawler/simplecrawler/issues"
},
"keywords": [
"simple",
"crawler",
"spider",
"cache",
"queue",
"simplecrawler",
"eventemitter"
],
"scripts": {
"lint": "eslint example/ lib/ test/",
"mocha": "mocha -t 5000 --exit",
"test": "npm run lint && npm run mocha",
"docs": "jsdoc2md -t jsdoc2md/README.hbs --partial jsdoc2md/*.hbs --files lib/*.js > README.md"
},
"bin": {
"crawl": "./lib/cli.js"
},
"main": "./lib/index.js",
"dependencies": {
"async": "^3.1.0",
"iconv-lite": "^0.5.0",
"robots-parser": "^2.1.1",
"urijs": "^1.19.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.5.1",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^7.0.1"
},
"engines": {
"node": ">=8"
},
"files": [
"lib"
]
}