redux-devtools/packages/redux-devtools-instrument/package.json
renovate[bot] ea16b342b9
chore(deps): update dependency rxjs to v7 (#778)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-08-26 23:40:32 +00:00

55 lines
1.5 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": "npm run build:types && npm 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",
"lint:fix": "eslint . --ext .ts --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"preversion": "npm run type-check && npm run lint && npm run test",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.172",
"jest": "^26.6.3",
"redux": "^4.1.1",
"rxjs": "^7.3.0"
},
"peerDependencies": {
"redux": "^3.4.0 || ^4.0.0"
}
}