redux-devtools/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2015-07-14 22:46:44 +03:00
{
"name": "redux-devtools",
2015-08-05 03:26:44 +03:00
"version": "0.1.3",
2015-07-14 22:46:44 +03:00
"description": "Redux DevTools with hot reloading and time travel",
"main": "lib/index.js",
"scripts": {
2015-07-15 00:09:20 +03:00
"clean": "rimraf lib",
2015-07-14 22:46:44 +03:00
"build": "babel src --out-dir lib",
"lint": "eslint src test examples",
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
2015-07-15 00:09:20 +03:00
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
2015-07-14 22:46:44 +03:00
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/redux-devtools.git"
},
"keywords": [
"redux",
"devtools",
"flux",
"hot reloading",
"time travel",
"live edit"
],
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/redux-devtools/issues"
},
"homepage": "https://github.com/gaearon/redux-devtools",
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^3.1.15",
"babel-loader": "^5.1.4",
"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",
2015-07-15 00:09:20 +03:00
"rimraf": "^2.3.4"
2015-07-14 22:46:44 +03:00
},
"peerDependencies": {
"redux": "^1.0.0 || 1.0.0-rc"
2015-07-15 00:09:20 +03:00
},
"dependencies": {
"lodash.assign": "^3.2.0",
"react-mixin": "^1.7.0",
2015-07-15 00:09:20 +03:00
"react-redux": "^0.2.2",
"redux": "^1.0.0-rc"
2015-07-14 22:46:44 +03:00
}
}