-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "@micro-app/cli",
"version": "0.5.1",
"description": "[CLI] Pluggable micro application framework.",
"main": "src/index.js",
"bin": {
"micro-app": "bin/micro-app",
"micro-app-dev": "bin/micro-app-dev",
"micro-app-serve": "bin/micro-app-serve",
"micro-app-start": "bin/micro-app-start",
"micro-app-build": "./bin/micro-app-build"
},
"scripts": {
"prepublishOnly": "npm run test",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"release": "bin/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"
},
"homepage": "https://github.com/MicroAppJS/cli",
"repository": {
"type": "git",
"url": "git+https://github.com/MicroAppJS/cli.git"
},
"bugs": {
"url": "https://github.com/MicroAppJS/cli/issues"
},
"files": [
"bin",
"src"
],
"keywords": [
"micro",
"microapp",
"micro-app",
"micro-application",
"core",
"cli"
],
"author": {
"name": "Zyao89",
"email": "[email protected]"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"devDependencies": {
"@micro-app/plugin-deploy": "^0.0.9",
"@types/jest": "^24.9.1",
"eslint-config-2o3t": "^2.0.2",
"husky": "^3.1.0",
"jest": "^24.9.0"
},
"dependencies": {
"@micro-app/core": "^0.5.0",
"@zkochan/cmd-shim": "^4.3.0",
"read-cmd-shim": "^2.0.0",
"update-notifier": "^4.1.3"
},
"engines": {
"node": ">=8"
}
}