redux-devtools/packages/redux-devtools-instrument/package.json
renovate[bot] 3957e694c6
chore(deps): update all non-major dependencies (#883)
* chore(deps): update all non-major dependencies

* Combine react types

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-10-04 04:29:49 +00:00

67 lines
1.8 KiB
JSON

{
"name": "@redux-devtools/instrument",
"version": "1.11.0",
"description": "Redux DevTools instrumentation",
"keywords": [
"redux",
"devtools",
"flux",
"hot reloading",
"time travel",
"live edit"
],
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-instrument",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"license": "MIT",
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"files": [
"lib",
"src"
],
"main": "lib/instrument.js",
"types": "lib/instrument.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\" --source-maps inline",
"clean": "rimraf lib",
"test": "jest",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"prepack": "yarn run clean && yarn run build",
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^14.17.20",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.5.0",
"jest": "^27.2.4",
"redux": "^4.1.1",
"rimraf": "^3.0.2",
"rxjs": "^7.3.1",
"ts-jest": "^27.0.5",
"typescript": "~4.3.5"
},
"peerDependencies": {
"redux": "^3.4.0 || ^4.0.0"
}
}