-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "vue-mfe",
"version": "1.1.2",
"description": "A micro-frontend implementation based on Vue.js.",
"sideEffects": false,
"main": "dist/vue-mfe.common.js",
"module": "dist/vue-mfe.esm.js",
"unpkg": "dist/vue-mfe.js",
"jsdelivr": "dist/vue-mfe.js",
"scripts": {
"publish-lab": "npm version patch && npm publish --registry=http://172.16.0.132:18081/repository/npm-lab/ && npm run git-push",
"git-push": "git add . && git commit -m \"update: publish package\" && git push",
"example": "cd example/root-app/src && vue serve --open",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node build/watch.js",
"dev": "rollup -wm -c build/rollup.dev.config.js",
"build": "node build/build.js",
"lint": "eslint src test examples",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"files": [
"dist",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/givingwu/vue-mfe"
},
"keywords": [
"vue-mfe",
"micro-frontend",
"vue-micro-frontend",
"vue micro frontend"
],
"author": "[email protected]",
"dependencies": {
"path-to-regexp": "^3.0.0",
"vue-router": "^3.0.6"
},
"devDependencies": {
"camelcase": "^5.3.1",
"rollup": "^0.56.4",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.0.0",
"terser": "^3.17.0",
"vuepress": "^0.14.11"
},
"license": "MIT"
}