-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 780 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 780 Bytes
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
{
"name": "redux-signals",
"version": "0.0.1",
"description": "A redux middleware that allows the creation of 'signal' actions that don't have reducers of their own, but instead dispatch other actions.",
"main": "dist/index.js",
"repository":"github:itaylor/redux-signals",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -r qunit-mocha-ui --ui qunit-mocha-ui --compilers js:babel/register"
},
"keywords": [
"redux",
"middleware",
"action",
"signal"
],
"author": "ian.b.taylor@gmail.com",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"mocha": "^2.3.3",
"qunit-mocha-ui": "0.0.5",
"redux": "^3.0.3",
"redux-thunk": "^1.0.0"
}
}