-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.09 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
{
"name": "fnd",
"version": "0.3.3",
"main": "fnd.js",
"repository": "http://github.com/hogart/fnd.git",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.x",
"eslint": "^1.10.x",
"jscs": "^2.6.x",
"mocha": "^2.2.1",
"opn": "^1.0.1"
},
"scripts": {
"lint": "jscs . && eslint .",
"unit": "opn ./test/index.html",
"test": "npm run lint && npm run unit"
},
"jscsConfig": {
"requireSpaceAfterKeywords": [
"if",
"for",
"while",
"do",
"switch",
"try",
"catch"
],
"disallowKeywordsOnNewLine": [
"else"
],
"disallowSpaceBeforePostfixUnaryOperators": true,
"disallowMultipleLineStrings": true,
"requireSpaceBeforeBinaryOperators": true,
"requireSpaceAfterBinaryOperators": true,
"disallowSpaceAfterPrefixUnaryOperators": true,
"excludeFiles": [
"node_modules"
]
},
"eslintConfig": {
"env": {
"browser": true
},
"rules": {
"quotes": [
2,
"single",
"avoid-escape"
],
"eol-last": [
0
]
}
}
}