redux-scc/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2016-09-21 00:58:31 +08:00
{
2016-12-20 18:39:23 +08:00
"name": "redux-scc",
2017-10-18 00:20:57 +08:00
"version": "1.3.0",
2016-12-20 18:39:23 +08:00
"description": "Redux store chunk creator",
2016-12-20 19:15:02 +08:00
"main": "./lib/index.js",
2016-09-21 00:58:31 +08:00
"scripts": {
2016-12-20 19:15:02 +08:00
"build": "babel -d lib/ src/",
2016-12-20 18:39:23 +08:00
"test": "jest",
2017-08-08 15:46:57 +08:00
"test:coverage": "jest --coverage",
"prepublish": "npm run build",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
2016-09-21 00:58:31 +08:00
},
"author": "Kai Moseley",
"license": "ISC",
2016-12-22 19:24:28 +08:00
"repository": {
"type": "git",
"url": "https://github.com/TheComfyChair/redux-scc"
},
2017-08-08 15:46:57 +08:00
"jest": {
"roots": [
"<rootDir>/src"
]
},
2016-09-21 00:58:31 +08:00
"devDependencies": {
"babel-cli": "^6.24.1",
2016-11-17 04:02:24 +08:00
"babel-core": "^6.18.2",
2016-09-21 00:58:31 +08:00
"babel-eslint": "^6.1.2",
2016-12-02 06:55:59 +08:00
"babel-jest": "^17.0.2",
2016-09-21 00:58:31 +08:00
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
2016-09-21 00:58:31 +08:00
"babel-preset-react": "^6.11.1",
"eslint": "^3.2.2",
"eslint-loader": "^1.5.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.18.1",
"eslint-plugin-react": "^6.0.0",
"jest": "^20.0.4",
"regenerator-runtime": "^0.10.5",
"webpack": "^3.4.1"
2016-11-17 04:02:24 +08:00
},
"dependencies": {
2017-08-08 15:46:57 +08:00
"coveralls": "^2.13.1",
"lodash.filter": "^4.6.0",
2017-02-22 18:03:36 +08:00
"lodash.find": "^4.6.0",
"lodash.flowright": "^3.5.0",
"lodash.includes": "^4.3.0",
2017-02-22 18:03:36 +08:00
"lodash.isfunction": "^3.0.8",
"lodash.isobject": "^3.0.2",
"lodash.keys": "^4.2.0",
"lodash.map": "^4.6.0",
2017-02-22 18:03:36 +08:00
"lodash.omit": "^4.5.0",
"redux": "^3.7.2"
2016-09-21 00:58:31 +08:00
}
}