redux-devtools/packages/redux-devtools-inspector-monitor-test-tab/package.json

94 lines
2.8 KiB
JSON
Raw Normal View History

{
"name": "@redux-devtools/inspector-monitor-test-tab",
"version": "0.7.4",
"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/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"scripts": {
"build": "yarn run build:types && yarn run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"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.16.7",
"@redux-devtools/ui": "^1.0.0",
"@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.0",
"react-icons": "^4.3.1",
"simple-diff": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@redux-devtools/core": "^3.9.2",
"@redux-devtools/inspector-monitor": "^1.0.2",
"@testing-library/react": "^12.1.2",
"@types/es6template": "^1.0.0",
"@types/jest": "^27.4.0",
"@types/jsan": "^3.1.2",
"@types/object-path": "^0.11.1",
"@types/react": "^17.0.38",
"@types/simple-diff": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux": "^4.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "~4.5.4"
},
"peerDependencies": {
"@redux-devtools/inspector-monitor": "^1.0.0",
"@types/react": "^16.3.0 || ^17.0.0",
"@types/styled-components": "^5.1.19",
"react": "^16.3.0 || ^17.0.0",
"redux": "^3.4.0 || ^4.0.0",
"styled-components": "^5.3.3"
}
}