-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.02 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
{
"name": "react-router-control",
"version": "2.0.9",
"description": "A component to simplify the configuration of react-router-dom, like the configuration of vue-router",
"module": "build/index.esm.js",
"main": "build/index.cjs.js",
"types": "index.d.ts",
"files": [
"build",
"index.d.ts",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"test": "jest",
"lint": "eslint src --ext .ts,.tsx,.js",
"lint-fix": "eslint --fix src --ext .ts,.tsx,.js",
"build": "rollup -c",
"push": "npm run build & npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pmj136/react-router-control.git"
},
"homepage": "https://github.com/Pmj136/react-router-control#readme",
"keywords": [
"react",
"react-router",
"react-router-dom",
"router-view",
"router-control"
],
"author": "pengmingjiu",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8",
"react-router-dom": ">=5"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.14",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"rollup": "^2.52.8",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {}
}