This repository has been archived by the owner on Aug 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
53
{
"name": "redux-future",
"version": "0.0.11",
"description": "FSA-compliant future monad middleware for redux",
"main": "index.js",
"scripts": {
"test": "mocha --require babel-core/register",
"prepublish": "npm run transpile",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags",
"transpile": "babel src --out-dir ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoeffel/redux-future.git"
},
"keywords": [
"redux",
"future",
"task",
"promise",
"middleware",
"redux-middleware",
"fsa",
"flux",
"monad"
],
"author": "schtoeffel",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoeffel/redux-future/issues"
},
"homepage": "https://github.com/stoeffel/redux-future#readme",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"data.task": "^3.0.0",
"expect": "^1.13.2",
"mocha": "^2.3.4",
"ramda": "^0.18.0",
"ramda-fantasy": "^0.4.1",
"redux": "^3.0.5",
"redux-actions": "^0.9.0",
"redux-io": "0.0.3"
},
"dependencies": {
"flux-standard-action": "^0.6.0"
}
}