mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
6fc18ed74e
* Add new Redux version to peer dependencies * Create orange-ravens-train.md
99 lines
3.1 KiB
JSON
99 lines
3.1 KiB
JSON
{
|
|
"name": "@redux-devtools/inspector-monitor-test-tab",
|
|
"version": "2.0.1",
|
|
"description": "Generate tests for redux devtools.",
|
|
"keywords": [
|
|
"redux",
|
|
"devtools",
|
|
"test",
|
|
"flux",
|
|
"react",
|
|
"hot reloading",
|
|
"time travel",
|
|
"live edit"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-test-tab",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
|
"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",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.23.2",
|
|
"@redux-devtools/ui": "^1.3.0",
|
|
"@types/prop-types": "^15.7.10",
|
|
"es6template": "^1.0.5",
|
|
"javascript-stringify": "^2.1.0",
|
|
"jsan": "^3.1.14",
|
|
"object-path": "^0.11.8",
|
|
"prop-types": "^15.8.1",
|
|
"react-icons": "^4.11.0",
|
|
"simple-diff": "^1.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.23.0",
|
|
"@babel/core": "^7.23.3",
|
|
"@babel/eslint-parser": "^7.23.3",
|
|
"@babel/plugin-transform-runtime": "^7.23.3",
|
|
"@babel/preset-env": "^7.23.3",
|
|
"@babel/preset-react": "^7.23.3",
|
|
"@babel/preset-typescript": "^7.23.3",
|
|
"@redux-devtools/core": "^3.13.2",
|
|
"@redux-devtools/inspector-monitor": "^4.0.1",
|
|
"@testing-library/react": "^14.1.0",
|
|
"@types/es6template": "^1.0.5",
|
|
"@types/jest": "^29.5.8",
|
|
"@types/jsan": "^3.1.5",
|
|
"@types/object-path": "^0.11.4",
|
|
"@types/react": "^18.2.37",
|
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
"@typescript-eslint/parser": "^6.11.0",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jest": "^27.6.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"redux": "^4.2.1",
|
|
"rimraf": "^5.0.5",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "~5.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@redux-devtools/inspector-monitor": "^4.0.1",
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
"@types/styled-components": "^5.1.30",
|
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0",
|
|
"styled-components": "^5.3.11"
|
|
}
|
|
}
|