-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "@mario34/mp-ci",
"version": "1.2.2",
"description": "微信小程序ci",
"main": "lib/index.js",
"author": "Mario34",
"license": "MIT",
"scripts": {
"dev": "node --experimental-modules --es-module-specifier-resolution=node ./mp-ci.js --log",
"watch": "rollup --config rollup.config.dev.ts --configPlugin typescript --watch",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint --ext .ts src",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mario34/mp-ci.git"
},
"type": "module",
"keywords": [
"mini-program",
"mp-cli"
],
"files": [
"lib/*"
],
"bugs": {
"url": "https://github.com/Mario34/mp-cli/issues"
},
"homepage": "https://github.com/Mario34/mp-cli#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@mario34/eslint-config-ts": "^0.3.1",
"@rollup/plugin-typescript": "^8.3.1",
"@types/minimist": "^1.2.2",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"rollup": "^2.69.0",
"standard-version": "^9.3.2",
"typescript": "^4.6.2"
},
"dependencies": {
"chalk": "^5.0.0",
"minimist": "^1.2.5",
"miniprogram-ci": "^1.8.0"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}