-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 820 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 820 Bytes
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
{
"name": "nodejs-webcrawler",
"version": "1.2.0",
"description": "网页版Nodejs爬虫,可抓取图片和文本",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/satrong/node-webcrawler.git"
},
"keywords": [
"crawler",
"node.js",
"nodejs爬虫"
],
"author": "Satrong Cao",
"license": "ISC",
"bugs": {
"url": "https://github.com/satrong/node-webcrawler/issues"
},
"homepage": "http://www.xiaoboy.com",
"dependencies": {
"async": "^3.2.2",
"iconv-lite": "^0.5.1",
"ws": "^7.4.6",
"ejs": "^3.1.7",
"cheerio": "^1.0.0-rc.3",
"mkdirp": "^1.0.3",
"request": "^2.88.2"
}
}