-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
38 lines (38 loc) · 983 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-socket.io",
"version": "1.4.0",
"description": "An opinionated connector between socket.io and redux",
"main": "dist/index.js",
"repository": "github:itaylor/redux-socket.io",
"directories": {
"test": "test"
},
"scripts": {
"build": "gulp",
"test": "npm run lint && npm run build && mocha --ui tdd --compilers js:babel-register",
"lint": "eslint src/*.js test/*.js"
},
"keywords": [
"redux",
"middleware",
"socket.io",
"action"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.4.1",
"expect": "^1.14.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"mocha": "^3.1.2",
"redux": "^3.0.3"
}
}