-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 902 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
{
"name": "redux-socket.io-middleware",
"version": "1.0.4",
"description": "Another middleware which allows you to connect your Redux app and Socket.io",
"main": "dist/redux-socket.io-middleware.js",
"repository": {
"type": "git",
"url": "git+https://github.com/czytelny/redux-socket.io-middleware.git"
},
"keywords": [
"redux",
"middleware",
"socket.io",
"socketio",
"socket",
"io",
"websockets"
],
"author": "Michal Chwedczuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/czytelny/redux-socket.io-middleware/issues"
},
"scripts": {
"build": "babel redux-socket.io-middleware.js -d dist"
},
"homepage": "https://github.com/czytelny/redux-socket.io-middleware#readme",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.5.0"
},
"babel": {
"presets": [
"es2015"
]
}
}