2018-12-03 00:49:12 +03:00
|
|
|
{
|
|
|
|
"name": "redux-devtools-instrument",
|
2020-08-14 17:37:56 +03:00
|
|
|
"version": "1.9.7",
|
2018-12-03 00:49:12 +03:00
|
|
|
"description": "Redux DevTools instrumentation",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"hot reloading",
|
|
|
|
"time travel",
|
|
|
|
"live edit"
|
|
|
|
],
|
2020-08-22 17:28:08 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-instrument",
|
2018-12-03 00:49:12 +03:00
|
|
|
"bugs": {
|
2018-12-12 03:22:35 +03:00
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
2020-08-22 17:28:08 +03:00
|
|
|
"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",
|
2020-08-29 07:14:49 +03:00
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
2020-08-22 17:28:08 +03:00
|
|
|
"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.19",
|
|
|
|
"symbol-observable": "^1.2.0"
|
|
|
|
},
|
2018-12-03 00:49:12 +03:00
|
|
|
"devDependencies": {
|
2020-08-22 17:28:08 +03:00
|
|
|
"@types/lodash": "^4.14.159",
|
2020-08-08 22:46:01 +03:00
|
|
|
"jest": "^26.2.2",
|
2020-08-01 21:21:04 +03:00
|
|
|
"redux": "^4.0.5",
|
|
|
|
"rxjs": "^6.6.2"
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
2020-08-22 17:28:08 +03:00
|
|
|
"peerDependencies": {
|
|
|
|
"redux": "^3.4.0 || ^4.0.0"
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
}
|