This repository has been archived by the owner on Jan 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
54 lines (54 loc) · 1.59 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
52
53
54
{
"name": "redux-websocket-autoreconnect",
"version": "1.0.1",
"description": "A redux middleware to handle websocket connections with auto reconnection",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "rimraf dist/ && babel -d dist/ src/",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matiere-noire/redux-websocket-autoreconnect.git"
},
"keywords": [
"redux", "react-native", "websokcet"
],
"author": "Baptiste Bouillot",
"license": "MIT",
"bugs": {
"url": "https://github.com/matiere-noire/redux-websocket-autoreconnect/issues"
},
"homepage": "https://github.com/matiere-noire/redux-websocket-autoreconnect",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"expect": "^1.20.2",
"flow-bin": "^0.36.0",
"mocha": "^3.1.2",
"mocha-phantomjs": "^4.1.0",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.6",
"testdouble": "^1.9.0",
"ws": "^1.1.1"
},
"dependencies": {
"lodash": "^4.17.2"
}
}