-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.17 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
{
"name": "mshared",
"version": "0.0.4",
"description": "微前端通信方案;适用于(乾坤)",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"scripts": {
"example:install": "lerna bootstrap",
"start": "lerna run start",
"build": "gulp build",
"api": "api-extractor run",
"test": "jest --coverage --verbose -u",
"lint": "eslint --ext .js,.ts --format=pretty ./src",
"lint:fix": "eslint --fix --ext .js,.ts --format=pretty ./src"
},
"peerDependencies": {
"react": "^16.8.3"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-env": "^7.12.16",
"@microsoft/api-extractor": "^7.13.1",
"@mlz/lint": "^1.1.10",
"@types/fs-extra": "^9.0.7",
"@types/gulp": "^4.0.8",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.26",
"@types/react-dom": "^16.8.3",
"@yueqing/lint": "^1.1.3",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"np": "^7.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.38.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juicecube/shared.git"
},
"files": [
"dist",
"es",
"lib"
],
"keywords": [
"qiankun",
"shared",
"micro"
],
"author": "luoguoxiong",
"license": "ISC",
"bugs": {
"url": "https://github.com/juicecube/shared/issues"
},
"homepage": "https://github.com/juicecube/shared#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged & jest -u"
}
},
"lint-staged": {
"*.{.ts,.js}": [
"eslint --fix --format=pretty"
]
}
}