forked from enkidevs/reduck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 908 Bytes
/
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
{
"name": "reduck",
"version": "0.2.1",
"description": "Opinionated way to create reducers and action creators",
"main": "build/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "eslint src && flow",
"flow": "flow",
"prepublish": "make clean build && cp src/index.js build/index.js.flow"
},
"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__/**"
],
"license": "MIT",
"devDependencies": {
"@mathieudutour/js-fatigue": "^1.0.4",
"babel-eslint": "^7.1.1",
"babel-preset-flow": "6.23.0",
"eslint-plugin-flowtype": "2.34.0",
"flow-bin": "0.40.0"
},
"dependencies": {
"invariant": "^2.2.1",
"warning": "^2.1.0"
}
}