-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.12 KB
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
{
"name": "huaban-crawl",
"version": "1.0.0",
"description": "Node command program to crawl 花瓣(https://huaban.com/) images",
"keywords": ["huban", "crawler", "node", "typescript"],
"homepage": "https://github.com/Jancat/huaban-crawl",
"bugs": "https://github.com/Jancat/huaban-crawl/issues",
"repository": {
"url": "https://github.com/Jancat/huaban-crawl",
"type": "git"
},
"author": "Jancat",
"license": "MIT",
"private": false,
"main": "index.ts",
"dependencies": {
"async": "^2.6.0",
"fs-extra": "^5.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"devDependencies": {
"@types/async": "^2.0.48",
"@types/fs-extra": "^5.0.1",
"@types/node": "^9.6.2",
"@types/request-promise": "^4.1.41",
"prettier": "^1.11.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-eslint-rules": "^5.1.0",
"tslint-plugin-prettier": "^1.3.0"
},
"scripts": {
"lint": "tslint -c tslint.yaml '*.ts?(x)'",
"start": "ts-node index.ts && exit 0"
}
}