This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "socket.io-middleware",
"version": "2.0.1",
"description": "A socket.io redux middleware wrapper for maintaining multiple socket connections.",
"main": "dist/index.js",
"repository": "https://github.com/Vandise/redux-socket.io-middleware",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf dist && mkdir dist && babel src --out-dir dist/",
"test": "mocha --opts spec/mocha.opts ${FILE:-spec}",
"doc": "./node_modules/.bin/jsdoc src/index.js src/middleware/client.js src/middleware/server.js -d docs"
},
"keywords": [
"redux",
"middleware",
"socket.io",
"socketio"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"redux": "^3.0.3",
"redux-thunk": "^2.1.0",
"sinon": "^1.17.5",
"socket.io-client": "^1.4.8"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.0.2",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"expect": "^1.14.0",
"jsdoc": "^3.5.5",
"mocha": "^2.3.3",
"redux-actions": "^0.11.0",
"sinon-chai": "^2.8.0",
"socket.io": "^1.4.8",
"testdouble": "^3.2.5"
}
}