-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 946 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
34
35
36
37
38
39
40
41
{
"name": "redux-middlewares",
"version": "0.2.1",
"description": "A library to create middlewares",
"main": "lib/index.js",
"files": [
"lib",
"src",
"test",
"webpack.config.js"
],
"scripts": {
"build": "$(npm bin)/webpack",
"test": "npm run build && $(npm bin)/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryo33/redux-middlewares.git"
},
"keywords": [
"redux",
"middleware"
],
"author": "Ryo33 (Ryo Hashiguchi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryo33/redux-middlewares/issues"
},
"homepage": "https://github.com/ryo33/redux-middlewares#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"redux": "^3.6.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"webpack": "^1.14.0"
}
}