-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wechat-ai",
"productName": "WeChat AI",
"version": "1.1.3",
"description": "A WeChat client with built-in robot. 个人微信客户端+机器人。",
"main": "main.js",
"scripts": {
"compile": "scripts/compile",
"lint": "scripts/lint",
"lint:staged": "lint-staged",
"start": "npm run compile && electron dist/main.js",
"test": "scripts/test",
"build:mac": "scripts/build-mac",
"build:win": "scripts/build-win",
"build": "npm run build:mac; npm run build:win",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaypeng2015/wechat-ai.git"
},
"keywords": [
"wechat",
"weixin",
"electron",
"api.ai",
"chatbot",
"ai"
],
"author": "Jingwei Peng",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaypeng2015/wechat-ai/issues"
},
"homepage": "https://github.com/jaypeng2015/wechat-ai#readme",
"engines": {
"node": "12.7.0",
"npm": "6.10.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "echo $HUSKY_GIT_PARAMS && commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": "tslint -c tslint.json 'src/**/*.ts'"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverageFrom": [
"src/**/*.{js}"
]
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/lodash": "4.14.138",
"appdmg": "0.6.0",
"electron-packager": "14.0.4",
"husky": "3.0.4",
"install": "0.13.0",
"jest": "24.9.0",
"lint-staged": "9.2.5",
"prettier": "1.18.2",
"release-it": "12.3.6",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.6.2"
},
"dependencies": {
"apiai": "4.0.3",
"electron": "6.0.5",
"electron-settings": "3.2.0",
"lodash": "4.17.15",
"uuid": "3.3.3"
}
}