-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "@micro-app/plugin-deploy",
"version": "0.0.9",
"description": "[Plugin] auto deploy plugin.",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run test",
"test": "jest",
"deploy": "micro-app deploy",
"release": "micro-app release",
"release:alpha": "npm run release -- --preRelease=alpha",
"release:next": "npm run release -- --preRelease=next",
"release:minor": "npm run release -- minor",
"release:patch": "npm run release -- patch"
},
"files": [
"src"
],
"homepage": "https://github.com/MicroAppJS/plugin-deploy",
"repository": {
"type": "git",
"url": "git+https://github.com/MicroAppJS/plugin-deploy.git"
},
"bugs": {
"url": "https://github.com/MicroAppJS/plugin-deploy/issues"
},
"keywords": [
"micro",
"micro-app",
"plugin",
"command",
"deploy"
],
"author": {
"name": "Zyao89",
"email": "zyao89@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"@micro-app/cli": ">=0.4.0"
},
"devDependencies": {
"@micro-app/cli": "^0.4.2",
"@micro-app/shared-utils": "^0.1.25",
"@types/jest": "^26.0.24",
"eslint-config-2o3t": "^2.0.2",
"jest": "^26.6.3"
},
"dependencies": {
"@release-it/conventional-changelog": "^2.0.1",
"release-it": "^14.11.5"
}
}