forked from joshburgess/redux-most
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "redux-most",
"version": "0.6.2",
"description": "Most.js based middleware for Redux. Handle async actions with monadic streams and reactive programming.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"typings": "./index.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
],
"scripts": {
"lint": "eslint src",
"test": "cross-env BABEL_ENV=test ava --tap | tap-diff",
"tdd": "cross-env BABEL_ENV=test ava --watch",
"safety-check": "yarn lint && yarn test",
"build:cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel src --out-dir lib",
"build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "rimraf dist && cross-env BABEL_ENV=umd webpack --config webpack.config.babel.js",
"build": "yarn build:cjs && yarn build:es && yarn build:umd",
"prepublish": "yarn safety-check && yarn build"
},
"repository": "joshburgess/redux-most",
"keywords": [
"action",
"async",
"asynchronous",
"fluent",
"functional",
"middleware",
"monad",
"monadic",
"most",
"most.js",
"mostjs",
"observable",
"reactive",
"reactive extensions",
"reactive programming",
"reactive streams",
"redux",
"redux-observable",
"redux-saga",
"rx",
"rxjs",
"saga",
"sagas",
"stream",
"streams",
"thunk"
],
"author": {
"name": "Josh Burgess",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/joshburgess/redux-most/issues"
},
"homepage": "https://github.com/joshburgess/redux-most#README.md",
"ava": {
"files": [
"tests/*.test.js"
],
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"peerDependencies": {
"most": "1.*",
"redux": "3.*"
},
"dependencies": {
"most-subject": "^5.3.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.11.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.24.1",
"cross-env": "^5.0.0",
"eslint": "^4.6.1",
"eslint-config-standard-pure-fp": "^2.0.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-better": "0.1.5",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"nyc": "^11.1.0",
"rimraf": "^2.5.4",
"sinon": "^3.2.1",
"tap-diff": "^0.1.1",
"typescript": "^2.0.3",
"typings": "^2.1.0",
"webpack": "^3.5.5"
},
"npmName": "redux-most",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}