-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
97 lines (97 loc) · 2.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@umijs/plugin-qiankun",
"version": "1.8.0",
"description": "umi plugin for qiankun",
"repository": "umijs/umi-plugin-qiankun",
"main": "index.js",
"keywords": [
"umi-plugin",
"micro frontend",
"qiankun"
],
"authors": [
{
"name": "chencheng",
"email": "[email protected]"
}
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "npm-run-all --parallel start:*",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "npm run lint:js && npm run lint:prettier && npm test",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:fix": "npm run lint:js -- --fix",
"lint:prettier": "check-prettier lint",
"prettier": "prettier -c --write **/*",
"prepublishOnly": "npm run build",
"build": "father-build",
"release": "np --no-cleanup --yolo --no-publish",
"start:master": "cd examples/master && umi dev",
"start:app1": "cd examples/app1 && umi dev",
"start:app2": "cd examples/app2 && umi dev",
"start:app3": "cd examples/app3 && umi dev",
"test": "umi-test"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"address": "^1.1.2",
"lodash": "^4.17.15",
"path-to-regexp": "^1.7.0",
"qiankun": "^1.3.6"
},
"peerDependencies": {
"react": "16",
"react-dom": "16",
"umi": "^2.12.0",
"webpack": "^4.41.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/react-dom": "^16.8.4",
"@umijs/fabric": "^1.1.10",
"check-prettier": "^1.0.3",
"concurrently": "^4.1.2",
"coveralls": "3",
"father-build": "^1.2.0",
"husky": "1",
"lint-staged": "8",
"mockjs": "^1.0.1-beta3",
"np": "5",
"npm-run-all": "^4.1.5",
"prettier": "1",
"umi": "^2.12.0",
"umi-plugin-react": "^1.9.13",
"umi-request": "^1.1.0",
"umi-test": "^1.8.2",
"umi-types": "^0.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"**/*.{js,ts,json,css,md}": [
"npm run prettier",
"git add"
],
"**/*.{js,ts}": [
"npm run lint:fix",
"git add"
]
},
"files": [
"lib",
"master.js",
"slave.js",
"index.js"
],
"license": "MIT",
"publishConfig": {
"access": "public"
}
}