-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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": "@2kk/miniprogram-ci",
"version": "0.0.8",
"description": "可以快速持续化集成小程序工具",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"bin"
],
"bin": {
"mp-ci": "bin/cli.js"
},
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -c -w",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c",
"lint": "eslint --ext .ts src",
"test": "jest"
},
"keywords": [
"wechat",
"mp",
"miniprogram",
"miniprogram-ci"
],
"author": "kk++",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.2.0",
"jsonfile": "^6.1.0",
"miniprogram-ci": "^1.9.5"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^29.5.1",
"@types/jsonfile": "^6.1.0",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"rimraf": "^4.4.1",
"rollup": "^2.77.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^29.1.0",
"typescript": "5.0.4"
}
}