-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name" : "react-teleport",
"description" : "A neat way of handling views on other components",
"homepage" : "https://github.com/coma/react-teleport",
"repository" : "https://github.com/coma/react-teleport",
"main" : "./src/index.js",
"version" : "0.1.3",
"license" : "MIT",
"private" : false,
"authors" : [
"Eduardo García Sanz <[email protected]>"
],
"keywords" : [
"react",
"reactjs",
"react-component"
],
"dependencies" : {
"react": "0.13||>=0.14.0-beta3"
},
"devDependencies": {
"jsdom" : "5.4",
"mocha" : "2.2",
"should": "7.0",
"eslint": "0.24"
},
"scripts" : {
"lint": "eslint src",
"test": "npm run lint && mocha"
},
"eslintConfig" : {
"env" : {
"node": true
},
"rules": {
"strict" : 0,
"new-cap" : 0,
"eqeqeq" : 2,
"curly" : 2,
"quotes" : [
1,
"single"
],
"no-unreachable" : 2,
"space-before-blocks" : 2,
"space-before-function-paren": 2,
"no-multi-spaces" : 0,
"key-spacing" : 0,
"no-mixed-requires" : 0
}
}
}