forked from single-spa/import-map-overrides
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "qiankun-overrides",
"version": "1.0.1",
"main": "dist/import-map-overrides.js",
"repository": "https://github.com/ousiri/qiankun-overrides.git",
"author": "ousiri <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn clean && cross-env NODE_ENV=production rollup -c",
"build:dev": "yarn clean && cross-env NODE_ENV=development rollup -c",
"clean": "rimraf dist",
"watch": "cross-env NODE_ENV=development rollup -c --watch",
"test": "concurrently yarn:watch 'copyfiles 'test/**/*' dist -f' 'serve .'",
"prepublishOnly": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"IE >= 11"
],
"files": [
"dist"
],
"keywords": [
"qiankun", "single-spa", "import-map-overrides"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/preset-env": "^7.9.5",
"concurrently": "^5.1.0",
"copyfiles": "^2.2.0",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"preact": "^10.4.0",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.6.4",
"rollup-plugin-terser": "^5.3.0",
"serve": "^11.3.0"
},
"dependencies": {}
}