-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "douban-star-photo-cli",
"version": "0.0.12",
"author": "chshouyu @chshouyu",
"bin": {
"douban-star-photo": "bin/run"
},
"bugs": "https://github.com/chshouyu/douban-star-photo-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@types/cheerio": "^0.22.28",
"@types/fs-extra": "^9.0.9",
"@types/inquirer": "^7.3.1",
"@types/lodash.range": "^3.2.6",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"cli-ux": "^5.5.1",
"fs-extra": "^9.1.0",
"inquirer": "^8.0.0",
"lodash.range": "^3.2.0",
"tslib": "^2.1.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/chshouyu/douban-star-photo-cli",
"keywords": [
"douban",
"cli"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "douban-star-photo"
},
"repository": "chshouyu/douban-star-photo-cli",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md",
"lint": "eslint src/**/*.ts",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"types": "lib/index.d.ts"
}