-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 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
40
41
42
43
44
45
46
47
48
{
"name": "redux-typed-saga",
"version": "0.0.1",
"description": "The Flow-typed alternative to Redux-Saga",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint src",
"flow": "flow",
"prepublish": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goshakkk/redux-typed-saga.git"
},
"keywords": [
"redux",
"saga",
"redux-saga",
"generators",
"flow",
"flowtype",
"typed",
"well-typed"
],
"author": "Gosha Arinich",
"license": "MIT",
"bugs": {
"url": "https://github.com/goshakkk/redux-typed-saga/issues"
},
"homepage": "https://github.com/goshakkk/redux-typed-saga#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babylon": "^6.13.1",
"eslint": "^3.10.0",
"eslint-plugin-babel": "^3.3.0",
"flow-bin": "^0.36.0",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1"
}
}