mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
0bf7bbd064
* chore(deps): update all non-major dependencies * yarn install * Consolidate * More consolidation Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
98 lines
3.0 KiB
JSON
98 lines
3.0 KiB
JSON
{
|
|
"name": "@redux-devtools/inspector-monitor-test-tab",
|
|
"version": "0.8.5",
|
|
"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": "yarn build:cjs && yarn build:esm && yarn 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": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.17.2",
|
|
"@redux-devtools/ui": "^1.2.1",
|
|
"@types/prop-types": "^15.7.4",
|
|
"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.3.1",
|
|
"simple-diff": "^1.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.6",
|
|
"@babel/core": "^7.17.5",
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-react": "^7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@redux-devtools/core": "^3.11.0",
|
|
"@redux-devtools/inspector-monitor": "^2.1.0",
|
|
"@testing-library/react": "^12.1.3",
|
|
"@types/es6template": "^1.0.0",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/jsan": "^3.1.2",
|
|
"@types/object-path": "^0.11.1",
|
|
"@types/react": "^17.0.39",
|
|
"@types/simple-diff": "^1.6.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
"@typescript-eslint/parser": "^5.12.1",
|
|
"eslint": "^8.10.0",
|
|
"eslint-config-prettier": "^8.4.0",
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
"eslint-plugin-react": "~7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"jest": "^27.5.1",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"redux": "^4.1.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@redux-devtools/inspector-monitor": "^2.0.0",
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"@types/styled-components": "^5.1.23",
|
|
"react": "^16.3.0 || ^17.0.0",
|
|
"redux": "^3.4.0 || ^4.0.0",
|
|
"styled-components": "^5.3.3"
|
|
}
|
|
}
|