-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 962 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
{
"name": "redux-websocket-server",
"description": "Provides the server-side websocket connection that allows redux actions dispatched from a client to be processed by the server.",
"version": "0.0.3",
"author": "Daniel Deak",
"license": "UNLICENSED",
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"main": "build/index.js",
"scripts": {
"build": "babel --presets latest,stage-2 -d build/ src/",
"prepublish": "npm run build"
},
"dependencies": {
"humps": "^1.1.0",
"socket.io": "^1.4.8"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"eslint": "^3.6.1",
"eslint-config-standard": "^6.1.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0"
},
"babel": {
"presets": [
"latest",
"stage-2"
]
}
}