-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
58 lines (58 loc) · 1.14 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
{
"name": "xiaoai-tts",
"version": "0.5.0",
"description": "小爱音箱 TTS",
"main": "src/index.js",
"scripts": {
"test": "node test/login"
},
"files": [
"src",
"lib/*.js"
],
"keywords": [
"xiaoai",
"tts",
"xiaomi",
"小爱",
"小爱同学",
"小爱音箱"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vv314/xiaoai-tts.git"
},
"bugs": {
"url": "https://github.com/vv314/xiaoai-tts/issues"
},
"homepage": "https://github.com/vv314/xiaoai-tts#readme",
"author": "Vincent <vv314@foxmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"typescript": "^3.4.5"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,md,css}": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}