This repository has been archived by the owner on Jan 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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": "react-socket.io",
"version": "1.0.3",
"description": "react socket.io provider Higher Order Component, passing the socket to children",
"main": "dist/index.js",
"files": [
"/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "babel -d dist/ -w src/",
"compile": "rm -rf dist && babel -d dist/ src/",
"lint": "eslint src/*",
"copy": "cp -rf package.json README.md dist",
"build": "npm run compile && npm run copy",
"dist": "cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anchorchat/react-socket.io.git"
},
"keywords": [
"react",
"socket.io",
"provider"
],
"author": "Anchor.Chat",
"license": "MIT",
"bugs": {
"url": "https://github.com/anchorchat/react-socket.io/issues"
},
"homepage": "https://github.com/anchorchat/react-socket.io#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.9.0"
},
"peerDependencies": {
"react": "^15.4.1",
"socket.io-client": "^1.7.2",
"underscore": "^1.8.3"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
}
}