-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "umi-plugin-runtime-routes",
"keywords": [
"umi",
"umi-plugin",
"routes",
"runtime"
],
"description": "Modify routes generated by umi at runtime.",
"version": "1.1.3",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/mickeyjsx/umi-plugin-runtime-routes",
"author": "James Tsang <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --config ./jest.config.js",
"build": "del dist --force && bili --config ./bili.config.js",
"prepublish": "yarn test && cross-env NODE_ENV=production && yarn build"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.2",
"babel-jest": "^24.8.0",
"bili": "^4.8.1",
"cross-env": "^5.2.0",
"del-cli": "^2.0.0",
"jest": "^24.8.0",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"umi-types": "^0.3.17"
},
"peerDependencies": {
"umi": "^2.0.0"
},
"dependencies": {
"slash2": "^2.0.0"
}
}