-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "@icatjs/micro",
"version": "0.1.0-rc.3",
"description": "",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"author": "valleykid <[email protected]>",
"scripts": {
"test": "rimraf coverage && jest --coverage",
"build": "rimraf lib && rollup -c",
"build:w": "npm run build -- -w",
"pub": "npm run build && npm publish --access public",
"pub:next": "npm run pub --tag=next"
},
"dependencies": {
"@satumjs/core": "latest",
"@satumjs/midware-cachecode": "latest",
"@satumjs/midware-interceptor": "latest",
"@satumjs/midware-microcode": "latest",
"@satumjs/midware-sandbox": "latest",
"@satumjs/midware-single-spa": "latest"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@types/url-parse": "^1.4.3",
"@umijs/fabric": "^2.6.4",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"rollup": "^2.54.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.4",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"keywords": [
"frontends",
"micro"
],
"homepage": "https://github.com/icatjs/micro#readme",
"files": [
"lib",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/icatjs/micro.git"
},
"bugs": {
"url": "https://github.com/icatjs/micro/issues"
},
"license": "MIT"
}