-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 877 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
32
33
{
"name": "redux-listener-middleware",
"description": "A Redux middleware, that listens for and reacts on Flux actions",
"version": "0.2.0",
"main": "lib/index.js",
"repository": {
"url": "[email protected]:matthias-reis/redux-interceptor-middleware.git",
"type": "git"
},
"scripts": {
"test": "jest",
"build": "babel src --out-dir lib"
},
"author": "Matthias Reis <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"jest": "^16.0.2",
"redux": "^3.6.0",
"babel": "^6.5.2",
"babel-jest": "^16.0.0"
},
"peerDependencies": {
"redux": "^3.1.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleFileExtensions": ["js"]
}
}