-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name" : "reactive-compass",
"description" : "React mixin and focus controller for navigation using arrow keys",
"version" : "0.0.5",
"author" : "Artpi <[email protected]>",
"private" : false,
"main" : "index.js",
"license" : "GPL3",
"devDependencies": {
"react": "*",
"eslint": "^0.23.0",
"eslint-plugin-one-variable-per-var": "0.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/artpi/Reactive-Compass"
},
"bugs": {
"url": "https://github.com/artpi/Reactive-Compass/issues"
},
"keywords": [
"react-component",
"navigation",
"embedded",
"accessibility",
"ARIA"
],
"eslintConfig": {
"plugins": [
"one-variable-per-var"
],
"rules": {
"one-variable-per-var/one-variable-per-var": 1,
"brace-style": 2,
"comma-style": 2,
"indent": [2, 4, {"indentSwitchCase": true}],
"max-len": [2, 120, 4],
"max-params": [2, 4],
"no-shadow": 0,
"no-bitwise": 2,
"no-continue": 2,
"no-nested-ternary": 2,
"no-use-before-define": [2, "nofunc"],
"quotes": [2, "single"],
"space-after-keywords": 2,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
"space-in-brackets": [2, "never"],
"strict": [2, "function"],
"vars-on-top": 2,
"wrap-iife": [2, "outside"]
},
"globals": {
"require": true,
"module": true,
"document": true
}
}
}