-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "nodespider",
"version": "0.11.4",
"description": "Simple, flexible, delightful web crawler/spider package",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"dependencies": {
"ava": "^1.2.0",
"charset": "^1.0.1",
"cheerio": "^0.22.0",
"delay": "^2.0.0",
"filenamify-url": "^1.0.0",
"fs-extra": "^5.0.0",
"got": "^8.3.1",
"iconv-lite": "^0.4.13",
"is-absolute-url": "^2.1.0",
"p-retry": "^1.0.0",
"request": "^2.88.0",
"sinon": "^4.5.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.7",
"@types/delay": "2.0.1",
"@types/fs-extra": "^4.0.8",
"@types/got": "^7.1.8",
"@types/iconv-lite": "0.0.1",
"@types/is-absolute-url": "^2.1.0",
"@types/node": "^7.0.63",
"@types/p-retry": "^1.0.1",
"@types/request": "^2.47.0",
"@types/sinon": "4.3.1"
},
"scripts": {
"test": "ava dist/test",
"clean": "rm -rf dist && mkdir dist",
"refresh": "rm -rf dist && mkdir dist && tsc",
"prepublish": "tsc && npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Bin-Huang/NodeSpider.git"
},
"author": "Ben Huang",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/Bin-Huang/NodeSpider/issues"
},
"keywords": [
"crawler",
"spider",
"nodespider"
],
"homepage": "https://github.com/Bin-Huang/NodeSpider#readme"
}