-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 2.79 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
86
87
88
89
90
91
92
93
{
"name": "uni-mini-ci",
"version": "0.0.11",
"description": "一个小程序端构建后支持 CI(持续集成)的插件,支持上传微信、企业微信、钉钉、支付宝平台的小程序。只需简单配置,即可轻松上传多个平台的小程序",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"minici": "lib/index.js"
},
"scripts": {
"clean:lib": "rimraf lib",
"build:types": "npm run clean:lib && tsc -b ./tsconfig.types.json",
"build": "npm run build:types && tsc",
"dev": "npm run build:types && tsc -w",
"lint": "eslint --fix --ext .json,.js,.ts src",
"test": "jest",
"commit": "git-cz",
"release-major": "standard-version --release-as major",
"release-minor": "standard-version --release-as minor",
"release-patch": "standard-version --release-as patch",
"release": "standard-version",
"prerelease": "standard-version --prerelease"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"files": [
"lib"
],
"lint-staged": {
"*.{js,ts}": "eslint --fix --ext .json,.js,.ts src"
},
"repository": {
"type": "git",
"url": "https://github.com/Moonofweisheng/uni-mini-ci.git"
},
"keywords": [
"uni-app",
"uni-mini-ci",
"ci",
"持续集成"
],
"author": "weisheng",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@dcloudio/types": "^3.2.11",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"json5": "^2.2.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"rollup": "2.78.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"typescript": "*"
},
"dependencies": {
"dingtalk-miniapp-opensdk": "^1.0.8",
"fs-extra": "^11.1.1",
"joycon": "^3.1.1",
"minidev": "^1.8.4",
"miniprogram-ci": "^1.9.5"
}
}