forked from umijs/qiankun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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": "qiankun",
"version": "1.1.9",
"description": "An completed implementation of Micro Frontends",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "npm run start:main & npm run start:react16 & npm run start:react15 & npm run start:vue",
"install:examples": "npm run build && cd examples/main && npm i && cd ../react16 && npm i && cd ../react15 && npm i && cd ../vue && npm i",
"start:main": "cd examples/main && npm start",
"start:react16": "cd examples/react16 && npm start",
"start:react15": "cd examples/react15 && npm start",
"start:vue": "cd examples/vue && npm start",
"build": "father-build",
"prepush": "npm run lint",
"release": "np --no-cleanup --yolo --no-publish",
"prepublishOnly": "npm run lint && npm run build",
"lint": "tslint 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuitos/qiankun.git"
},
"files": [
"dist"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuitos/qiankun/issues"
},
"homepage": "https://github.com/kuitos/qiankun#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"import-html-entry": "^1.0.0",
"lodash": "^4.17.11",
"single-spa": "^4.3.4",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/lodash": "^4.14.129",
"babel-plugin-import": "^1.12.1",
"father-build": "^1.7.0",
"husky": "^2.3.0",
"np": "^5.0.3",
"rimraf": "^3.0.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5"
}
}