forked from Binaryify/NeteaseCloudMusicApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.44 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
{
"name": "NeteaseCloudMusicApi",
"version": "3.45.3",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
"test": "mocha -r intelli-espower-loader -t 20000 app.test.js --exit",
"lint": "eslint **/*.{js,ts}",
"lint-fix": "eslint --fix **/*.{js,ts}"
},
"keywords": [
"网易云音乐",
"网易云",
"音乐",
"网易云音乐nodejs"
],
"main": "main.js",
"types": "./interface.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=12"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": "binaryify",
"license": "MIT",
"files": [
"module",
"util",
"plugins",
"main.d.ts",
"interface.d.ts",
"module_types"
],
"dependencies": {
"axios": "^0.20.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.9",
"pac-proxy-agent": "^4.0.0",
"tunnel": "^0.0.6"
},
"devDependencies": {
"@types/node": "14.14.6",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"eslint": "7.12.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-html": "6.0.3",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"intelli-espower-loader": "1.0.1",
"lint-staged": "10.5.0",
"mocha": "8.2.0",
"power-assert": "1.6.1",
"prettier": "2.1.2",
"typescript": "4.0.5"
}
}