-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 915 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
{
"name": "redux-effex",
"version": "1.1.2",
"description": "Spin off async functions to perform side effects",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib && cp src/index.js.flow lib/index.js.flow",
"test": "flow && mocha --compilers js:babel-register -r babel-polyfill",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"files": [
"src",
"lib"
],
"author": "Brent Vatne <brentvatne@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-latest": "^6.14.0",
"babel-register": "^6.14.0",
"expect": "^1.20.2",
"flow-bin": "^0.32.0",
"mocha": "^3.0.2",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.0"
}
}