Skip to content

Commit 87afe5d

Browse files
author
Eduardo García Sanz
committed
init...
1 parent 4860f55 commit 87afe5d

2 files changed

Lines changed: 51 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.log

package.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name" : "react-socket",
3+
"description" : "A neat way of handling views on other components",
4+
"homepage" : "https://github.com/coma/react-socket",
5+
"repository" : "https://github.com/coma/react-socket",
6+
"main" : "./index.js",
7+
"version" : "0.0.0",
8+
"license" : "MIT",
9+
"private" : false,
10+
"authors" : [
11+
"Eduardo García Sanz <eduardo@comakai.com>"
12+
],
13+
"keywords" : ["react", "socket.io"],
14+
"dependencies" : {
15+
"socket.io-client": "1.3"
16+
},
17+
"devDependencies": {
18+
"jsdom" : "5.4",
19+
"mocha" : "2.2",
20+
"should" : "7.0",
21+
"eslint" : "0.24",
22+
"eslint-plugin-react": "2.5"
23+
},
24+
"scripts" : {
25+
"lint": "eslint src",
26+
"test": "npm run lint && mocha"
27+
},
28+
"eslintConfig" : {
29+
"env" : {
30+
"node": true
31+
},
32+
"rules" : {
33+
"strict" : 0,
34+
"new-cap" : 0,
35+
"eqeqeq" : 2,
36+
"curly" : 2,
37+
"quotes" : [
38+
1,
39+
"single"
40+
],
41+
"no-unreachable" : 2,
42+
"space-before-blocks" : 2,
43+
"space-before-function-paren": 2,
44+
"no-multi-spaces" : 0,
45+
"key-spacing" : 0,
46+
"no-mixed-requires" : 0
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)