-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "redux-sockets",
"version": "1.1.1",
"description": "An integration between redux and socket.io",
"main": "lib/index.js",
"scripts": {
"lint": "run-p lint-*",
"lint-src": "eslint src --fix",
"lint-tests": "eslint __tests__ --fix",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"babel": "babel src -d lib -s",
"build": "rimraf lib && npm run babel",
"jest": "jest",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SharonGrossman/redux-sockets.git"
},
"keywords": [
"redux",
"socket",
"socket.io",
"reducer"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SharonGrossman/redux-sockets/issues"
},
"homepage": "https://github.com/SharonGrossman/redux-sockets#readme",
"engines": {
"node": ">=4"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.3.0",
"eslint-config-noamokman": "^6.0.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.2",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"validate-commit-msg": "^2.14.0"
},
"jest": {
"notify": true,
"collectCoverage": true
},
"dependencies": {
"redux-actions": "^2.2.1",
"socket.io-client": "^2.0.3",
"socketio-wildcard": "^2.0.0"
}
}