-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 KB
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
{
"name": "inula-router",
"version": "1.0.16",
"description": "router for inula framework, a part of inula-ecosystem",
"main": "./router/cjs/router.js",
"module": "./router/esm/router.js",
"types": "./router/@types/index.d.ts",
"type": "module",
"files": [
"/connectRouter",
"/router",
"README.md"
],
"scripts": {
"test": "jest",
"build": "rollup -c build.js && npm run build-types",
"build-types": "tsc -p tsconfig.build.json && tsc -p tsconfig.cbuild.json && rollup -c build-types.js"
},
"keywords": [
"inula-router"
],
"license": "MulanPSL2",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"openinula": "^1.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react-redux": "7.1.33",
"jest-environment-jsdom": "29.5.0",
"jsdom": "24.0.0",
"react-redux": "^4.0.0",
"redux": "4.2.1"
},
"peerDependencies": {
"openinula": ">=1.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=12.0.0"
},
"engineStrict": true
}