forked from ant-move/Antmove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "antmove",
"version": "0.0.23",
"description": "小程序跨平台开发统一解决方案.",
"bin": {
"antmove": "./bin/index"
},
"main": "src/index.js",
"scripts": {
"build-zhihu": "node ./scripts/wechat/zhihu.js",
"build-v2ex": "node ./scripts/wechat/v2ex.js",
"build-mini-demo": "node ./scripts/wechat/mini-demo.js",
"lint": "eslint ./src",
"updata": "node ./src/utils/updataTool/index.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "[email protected]",
"license": "GPL-3.0",
"dependencies": {
"@antmove/utils": "^0.0.8",
"@antmove/wx-alipay": "^0.0.14",
"commander": "^2.19.0",
"fs-extra": "^7.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^4.0.1",
"husky": "^1.3.1",
"lerna": "^3.13.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}