forked from qq-web/qq-miniprogram-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 977 Bytes
/
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
{
"name": "miniprogram-demo",
"version": "1.0.0",
"description": "QQ小程序示例源码 > 请使用QQ开发者工具或QQ Android客户端7.9.9/Ios客户端8.0.3及以上版本运行。",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cp": "cp -R ./ ../../github/fork/qq-miniprogram-demo/"
},
"repository": {
"type": "git",
"url": "http://git.code.oa.com/QQMiniApp/miniprogram-demo.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"@commitlint/config-conventional": "^9.0.1",
"commitlint": "^9.0.1",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11"
},
"lint-staged": {
"./**/*.js": [
"eslint --fix",
"git add"
]
}
}