forked from openinula/inula
88 lines
2.8 KiB
JSON
88 lines
2.8 KiB
JSON
{
|
|
"name": "inula-router",
|
|
"version": "0.0.4",
|
|
"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",
|
|
"devDependencies": {
|
|
"@babel/core": "7.21.3",
|
|
"@babel/plugin-proposal-class-properties": "7.16.7",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.7",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.16.7",
|
|
"@babel/plugin-proposal-optional-chaining": "7.16.7",
|
|
"@babel/plugin-syntax-jsx": "7.16.7",
|
|
"@babel/plugin-transform-arrow-functions": "7.16.7",
|
|
"@babel/plugin-transform-block-scoped-functions": "7.16.7",
|
|
"@babel/plugin-transform-block-scoping": "7.16.7",
|
|
"@babel/plugin-transform-classes": "7.16.7",
|
|
"@babel/plugin-transform-computed-properties": "7.16.7",
|
|
"@babel/plugin-transform-destructuring": "7.16.7",
|
|
"@babel/plugin-transform-for-of": "7.16.7",
|
|
"@babel/plugin-transform-literals": "7.16.7",
|
|
"@babel/plugin-transform-object-assign": "7.16.7",
|
|
"@babel/plugin-transform-object-super": "7.16.7",
|
|
"@babel/plugin-transform-parameters": "7.16.7",
|
|
"@babel/plugin-transform-react-jsx": "7.16.7",
|
|
"@babel/plugin-transform-react-jsx-source": "^7.16.7",
|
|
"@babel/plugin-transform-runtime": "7.16.7",
|
|
"@babel/plugin-transform-shorthand-properties": "7.16.7",
|
|
"@babel/plugin-transform-spread": "7.16.7",
|
|
"@babel/plugin-transform-template-literals": "7.16.7",
|
|
"@babel/preset-env": "7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@rollup/plugin-babel": "^6.0.3",
|
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/jest": "^29.2.3",
|
|
"@types/react-redux": "7.0.0",
|
|
"jest": "29.3.1",
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
"jsdom": "^21.1.1",
|
|
"prettier": "2.8.8",
|
|
"react-redux": "^3.8.1 || ^4.0.0",
|
|
"rollup": "2.79.1",
|
|
"rollup-plugin-dts": "^6.0.1",
|
|
"rollup-plugin-terser": "^5.1.3",
|
|
"redux": "4.2.1",
|
|
"ts-jest": "29.0.3",
|
|
"typescript": "4.9.3"
|
|
},
|
|
"peerDependencies": {
|
|
"openinula": ">=0.1.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
|
|
}
|