-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "react-with-socket",
"version": "0.0.4",
"description": "Higher Order Component to communicate with sockets",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --ignore=**/*.spec.js",
"lint": "eslint src",
"prepublish": "npm run lint && npm run test && npm run build",
"test": "mocha --compilers js:babel-register --reporter spec src/*.spec.js 'src/**/*.spec.js' --require mocha.config"
},
"keywords": [
"react",
"hoc",
"socket",
"real-time",
"socket.io",
"sockets"
],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^4.1.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.0",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"react-dom": "^15.6.1",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0",
"socket.io-client": "^2.0.3"
},
"peerDependencies": {
"react": "^15.6.1"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0"
}
}