-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
73 lines (67 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
{
"name" : "eve",
"author" : {
"name" : "Dmitry Baranovskiy",
"email" : "dmitry@baranovskiy.com",
"url" : "http://dmitry.baranovskiy.com"
},
"description" : "Simple custom events",
"license": "Apache-2.0",
"version" : "0.5.4",
"main" : "./eve.js",
"devDependencies": {
"mocha": "*",
"expect.js": "*",
"eslint": "*",
"dr.js": "~0.1.0"
},
"scripts": {
"test": "eslint eve.js",
"build": "node node_modules/dr.js/dr dr.json"
},
"repository": {
"type": "git",
"url": "git@github.com:adobe-webplatform/eve.git"
},
"eslintConfig": {
"globals": {
"window": true,
"console": true
},
"rules": {
"block-scoped-var": 0,
"comma-dangle": 0,
"no-extra-parens": 1,
"no-shadow": 0,
"consistent-return": 0,
"eqeqeq": 0,
"no-new-wrappers": 0,
"no-sequences": 1,
"radix": 2,
"new-parens": 0,
"no-underscore-dangle": 0,
"no-path-concat": 0,
"strict": 0,
"camelcase": 0,
"no-extend-native": 0,
"no-loop-func": 0,
"new-cap": 0,
"no-unused-expressions": 0,
"no-mixed-requires": 0,
"indent": ["error", 4, { "SwitchCase": 1, "VariableDeclarator": 1 }],
"no-multi-spaces": [0, {
"exceptions": {
"VariableDeclarator": true
}
}],
"no-trailing-spaces": [2, { "skipBlankLines": false }],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
"quotes": [
1,
"double",
"avoid-escape"
]
}
}
}