-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.37 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"private": true,
"name": "douyin",
"version": "2.0.0",
"description": "A toolkit for play with modern video sites",
"author": "hbb",
"scripts": {
"youtube": "GLOBAL_AGENT_HTTP_PROXY=http://127.0.0.1:1081 ts-node -r 'global-agent/bootstrap' lib/toolkit/youtube",
"lint": "eslint --fix --ext .js,.ts lib"
},
"dependencies": {
"fast-xml-parser": "^3.16.0",
"global-agent": "^2.1.8",
"gm": "^1.23.1",
"got": "^10.7.0",
"hbblog": "^1.2.2",
"lodash": "^4.17.15",
"mime": "^2.4.3",
"mkdirp": "^1.0.3",
"moment": "^2.24.0",
"progress": "^2.0.3",
"rimraf": "^2.6.3",
"yargs": "^13.2.1"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^1.0.0",
"@types/progress": "^2.0.3",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"lint-staged": "^10.1.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hbbalfred/douyin.git"
},
"bugs": {
"url": "https://github.com/hbbalfred/douyin/issues"
},
"homepage": "https://github.com/hbbalfred/douyin#readme"
}