-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "redux-saga-websocket",
"version": "1.0.1",
"description": "websocket for redux and redux-saga, which can integrate all websocket channels to one channel",
"main": "lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src -d lib --ignore test",
"lint": "eslint src/*.js src/test/*.js",
"test": "jest",
"coverage": "jest --coverage ",
"prepublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangtao0101/redux-saga-websocket.git"
},
"keywords": [
"redux-saga",
"redux",
"websocket"
],
"author": "wangtao0101",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangtao0101/redux-saga-websocket/issues"
},
"homepage": "https://github.com/wangtao0101/redux-saga-websocket",
"dependencies": {
"immutable": "^3.8.1",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"redux-immutable": "^4.0.0",
"warning": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"mock-socket": "^6.0.4",
"redux": "^3.6.0",
"redux-saga": "^0.14.5",
"webpack": "^2.3.3"
}
}