-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "reduck",
"version": "0.2.2",
"description": "Opinionated way to create reducers and action creators",
"main": "build/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"flow": "flow",
"prepublish": "make clean build && cp src/index.js build/index.js.flow"
},
"pre-commit": ["test", "lint"],
"repository": {
"type": "git",
"url": "https://github.com/enkidevs/reduck.git"
},
"homepage": "https://github.com/enkidevs/reduck",
"keywords": [],
"author": "Mathieu Dutour <[email protected]>",
"files": ["build/", "src", "!**/__tests__/**"],
"jest": {
"setupFiles": ["jest-localstorage-mock"],
"testEnvironment": "node"
},
"license": "MIT",
"devDependencies": {
"@mathieudutour/js-fatigue": "^1.0.4",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "6.23.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-jest": "^21.2.0",
"flow-bin": "0.57.3",
"jest": "^21.2.1",
"jest-localstorage-mock": "^2.0.1",
"lodash.assign": "^4.2.0",
"lodash.filter": "^4.6.0",
"lodash.find": "^4.6.0",
"lodash.map": "^4.6.0",
"pre-commit": "^1.2.2",
"redux": "^3.7.2",
"redux-mock-store": "^1.3.0",
"redux-object-to-promise": "^0.3.3",
"redux-optimist-promise": "^0.8.3"
},
"dependencies": {
"invariant": "^2.2.1",
"warning": "^3.0.0"
}
}