mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
|
{
|
||
|
"name": "redux-devtools-log-monitor",
|
||
|
"version": "1.4.0",
|
||
|
"description": "The default tree view monitor for Redux DevTools",
|
||
|
"main": "lib/index.js",
|
||
|
"files": [
|
||
|
"lib",
|
||
|
"src"
|
||
|
],
|
||
|
"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",
|
||
|
"prepare": "npm run build",
|
||
|
"prepublishOnly": "npm run lint && npm run test && npm run clean && npm run build"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/reduxjs/redux-devtools"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"redux",
|
||
|
"devtools",
|
||
|
"flux",
|
||
|
"react",
|
||
|
"hot reloading",
|
||
|
"time travel",
|
||
|
"live edit"
|
||
|
],
|
||
|
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "^6.3.15",
|
||
|
"babel-core": "^6.1.20",
|
||
|
"babel-eslint": "^5.0.0-beta4",
|
||
|
"babel-loader": "^6.2.0",
|
||
|
"babel-preset-es2015-loose": "^6.1.3",
|
||
|
"babel-preset-react": "^6.3.13",
|
||
|
"babel-preset-stage-0": "^6.3.13",
|
||
|
"eslint": "^0.23",
|
||
|
"eslint-config-airbnb": "0.0.6",
|
||
|
"eslint-plugin-react": "^3.6.3",
|
||
|
"expect": "^1.6.0",
|
||
|
"mocha": "^2.2.5",
|
||
|
"mocha-jsdom": "^1.0.0",
|
||
|
"rimraf": "^2.3.4",
|
||
|
"webpack": "^1.11.0"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"react": "^15.0.0 || ^16.0.0",
|
||
|
"redux-devtools": "^3.4.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"lodash.debounce": "^4.0.4",
|
||
|
"prop-types": "^15.0.0",
|
||
|
"react-json-tree": "^0.11.0",
|
||
|
"react-pure-render": "^1.0.2",
|
||
|
"redux-devtools-themes": "^1.0.0"
|
||
|
}
|
||
|
}
|