redux-scc/package.json

55 lines
1.3 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-02-21 17:31:30 +08:00
"version": "0.3.3",
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",
"prepublish": "npm run build"
2016-09-21 00:58:31 +08:00
},
"author": "Kai Moseley",
"license": "ISC",
2016-12-02 06:55:59 +08:00
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"moduleDirectories": [
"node_modules"
],
"modulePaths": [
"/src"
]
},
2016-12-22 19:24:28 +08:00
"repository": {
"type": "git",
"url": "https://github.com/TheComfyChair/redux-scc"
},
2016-09-21 00:58:31 +08:00
"devDependencies": {
2016-12-20 18:39:23 +08:00
"babel-cli": "^6.18.0",
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",
2016-11-17 04:02:24 +08:00
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
2016-09-21 00:58:31 +08:00
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
2017-01-03 23:02:04 +08:00
"babel-preset-es2015": "^6.18.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",
2016-12-20 19:55:43 +08:00
"eslint-plugin-react": "^6.0.0"
2016-11-17 04:02:24 +08:00
},
"dependencies": {
"lodash": "^4.17.2",
2016-12-20 19:55:43 +08:00
"redux": "^3.6.0"
2016-09-21 00:58:31 +08:00
}
}