-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "socket.io-redux",
"version": "1.0.3",
"description": "Redux middleware to emit actions to a socket.io server",
"main": "build/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint lib/index.js",
"prebuild": "npm run lint",
"build": "babel lib --out-dir build",
"pretest": "npm run build",
"test": "babel-node test/index.js | tap-spec",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlatziDev/socket.io-redux.git"
},
"keywords": [
"redux",
"middleware",
"socket.io"
],
"author": "Sergio Daniel Xalambrí <[email protected]> (http://sergio.xalambri.xyz/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PlatziDev/socket.io-redux/issues"
},
"homepage": "https://github.com/PlatziDev/socket.io-redux#readme",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.6.5",
"babel-core": "6.7.2",
"babel-eslint": "5.0.0",
"babel-plugin-transform-es2015-arrow-functions": "6.5.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.7.0",
"eslint": "2.4.0",
"eslint-config-airbnb": "6.1.0",
"eslint-plugin-react": "4.2.3",
"tap-spec": "4.1.1",
"tape": "4.5.1"
}
}