2018-12-23 03:13:56 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/inspector-monitor-test-tab",
|
2023-12-18 05:32:58 +03:00
|
|
|
"version": "4.0.0",
|
2018-12-23 03:13:56 +03:00
|
|
|
"description": "Generate tests for redux devtools.",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"test",
|
|
|
|
"flux",
|
|
|
|
"react",
|
|
|
|
"hot reloading",
|
|
|
|
"time travel",
|
|
|
|
"live edit"
|
|
|
|
],
|
2020-10-04 07:01:46 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-test-tab",
|
2018-12-23 03:13:56 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-09-13 07:02:24 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2020-09-13 07:02:24 +03:00
|
|
|
"src"
|
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
|
|
|
"sideEffects": false,
|
2020-09-13 07:02:24 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-08 16:49:09 +03:00
|
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
2022-01-24 05:11:46 +03:00
|
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
2022-05-18 02:15:31 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
2022-01-24 05:11:46 +03:00
|
|
|
"clean": "rimraf lib",
|
2020-09-13 07:02:24 +03:00
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
2020-09-13 07:02:24 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/runtime": "^7.24.7",
|
2023-12-09 08:05:25 +03:00
|
|
|
"@redux-devtools/ui": "^1.3.1",
|
2020-09-13 07:02:24 +03:00
|
|
|
"es6template": "^1.0.5",
|
2021-06-19 04:47:26 +03:00
|
|
|
"javascript-stringify": "^2.1.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jsan": "^3.1.14",
|
2021-09-21 00:49:13 +03:00
|
|
|
"object-path": "^0.11.8",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react-icons": "^5.2.1",
|
2023-10-28 06:45:50 +03:00
|
|
|
"simple-diff": "^1.7.2"
|
2020-09-13 07:02:24 +03:00
|
|
|
},
|
2018-12-23 03:13:56 +03:00
|
|
|
"devDependencies": {
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/cli": "^7.24.7",
|
|
|
|
"@babel/core": "^7.24.7",
|
|
|
|
"@babel/eslint-parser": "^7.24.7",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
|
|
"@babel/preset-env": "^7.24.7",
|
|
|
|
"@babel/preset-react": "^7.24.7",
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
2024-03-08 06:38:44 +03:00
|
|
|
"@emotion/react": "^11.11.4",
|
2023-12-18 05:32:58 +03:00
|
|
|
"@redux-devtools/core": "^4.0.0",
|
|
|
|
"@redux-devtools/inspector-monitor": "^6.0.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@testing-library/react": "^14.3.1",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/es6template": "^1.0.5",
|
2024-02-09 02:01:24 +03:00
|
|
|
"@types/jest": "^29.5.12",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/jsan": "^3.1.5",
|
|
|
|
"@types/object-path": "^0.11.4",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@types/react": "^18.3.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
|
|
"@typescript-eslint/parser": "^7.12.0",
|
2024-02-24 02:18:02 +03:00
|
|
|
"eslint": "^8.57.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-02-24 02:18:02 +03:00
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"eslint-plugin-react": "^7.34.2",
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.1",
|
2024-06-07 04:21:49 +03:00
|
|
|
"rimraf": "^5.0.7",
|
|
|
|
"ts-jest": "^29.1.4",
|
2024-01-08 02:08:46 +03:00
|
|
|
"typescript": "~5.3.3"
|
2020-08-01 18:56:54 +03:00
|
|
|
},
|
2020-09-13 07:02:24 +03:00
|
|
|
"peerDependencies": {
|
2024-03-08 06:38:44 +03:00
|
|
|
"@emotion/react": "^11.11.4",
|
2023-12-18 05:32:58 +03:00
|
|
|
"@redux-devtools/inspector-monitor": "^6.0.0",
|
2023-08-28 04:49:10 +03:00
|
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@types/styled-components": "^5.1.34",
|
2023-12-18 05:13:35 +03:00
|
|
|
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
|
|
|
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
2023-12-09 06:41:20 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"styled-components": "^5.3.11"
|
2018-12-23 03:13:56 +03:00
|
|
|
}
|
|
|
|
}
|