2018-12-03 00:49:12 +03:00
|
|
|
{
|
|
|
|
"name": "redux-devtools-instrument",
|
|
|
|
"version": "1.9.3",
|
|
|
|
"description": "Redux DevTools instrumentation",
|
|
|
|
"main": "lib/instrument.js",
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"build": "babel src --out-dir lib",
|
|
|
|
"lint": "eslint src test",
|
|
|
|
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
|
|
|
|
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
|
|
|
|
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
|
2018-12-13 04:31:17 +03:00
|
|
|
"prepare": "npm run build",
|
2018-12-07 19:18:19 +03:00
|
|
|
"prepublishOnly": "npm run lint && npm run test && npm run clean && npm run build"
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-12-12 03:22:35 +03:00
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"hot reloading",
|
|
|
|
"time travel",
|
|
|
|
"live edit"
|
|
|
|
],
|
|
|
|
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
|
|
|
|
"license": "MIT",
|
|
|
|
"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
|
|
|
},
|
2018-12-12 03:22:35 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
2018-12-03 00:49:12 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"babel-cli": "^6.3.17",
|
|
|
|
"babel-core": "^6.3.17",
|
|
|
|
"babel-eslint": "^4.1.6",
|
|
|
|
"babel-loader": "^6.2.0",
|
|
|
|
"babel-preset-es2015-loose": "^6.1.3",
|
|
|
|
"babel-preset-stage-0": "^6.3.13",
|
|
|
|
"eslint": "^0.23",
|
|
|
|
"eslint-config-airbnb": "0.0.6",
|
|
|
|
"eslint-plugin-react": "^2.3.0",
|
|
|
|
"expect": "^1.6.0",
|
|
|
|
"isparta": "^3.0.3",
|
|
|
|
"mocha": "^2.2.5",
|
|
|
|
"redux": "^4.0.0",
|
|
|
|
"rimraf": "^2.3.4",
|
|
|
|
"rxjs": "^5.0.0-beta.6",
|
|
|
|
"webpack": "^1.11.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.2.0",
|
|
|
|
"symbol-observable": "^1.0.2"
|
|
|
|
}
|
|
|
|
}
|