-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "redux-consumer-toolkit",
"version": "2.4.0",
"description": "Toolkit for combining and creating efficient derived reducers",
"main": "lib/index.js",
"repository": {
"type": "github",
"url": "https://github.com/RocketPuppy/redux-consumer-toolkit"
},
"scripts": {
"test": "mocha --compilers js:babel-register",
"clean": "rm -rf lib/",
"compile": "babel src/ -d lib/",
"compile:flow": "flow-copy-source -i 'examples/**/*.js' src/ lib/",
"build": "npm run docs && npm run compile && npm run compile:flow",
"prepublish": "npm run clean && npm run build && npm run test",
"flow": "flow",
"lint": "eslint src",
"docs": "cd docs-src && make"
},
"author": "Daniel Wilson-Thomas",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"eslint": "^4.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"flow-copy-source": "^1.2.1",
"mocha": "^3.5.0",
"prettier": "^1.5.3",
"react-redux": "^5.0.6",
"reselect": "^3.0.1"
}
}