-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.2 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.2 KB
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
{
"name": "moe",
"version": "1.0.0",
"description": "Desucon's mobile schedule",
"scripts": {
"build": "gulp"
},
"author": "Aarni Koskela <akx@desucon.fi>",
"license": "MIT",
"dependencies": {
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-babel": "^5.2.1",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^1.1.0",
"gulp-eslint": "^1.0.0",
"gulp-jshint": "^1.9.0",
"gulp-plumber": "^0.6.6",
"gulp-size": "^1.3.0",
"gulp-uglifyjs": "^0.5.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"ecmaFeatures": {
"blockBindings": true,
"arrowFunctions": true
},
"rules": {
"comma-style": [
1,
"last"
],
"consistent-this": [
1,
"_this"
],
"eol-last": 1,
"new-cap": 1,
"no-array-constructor": 1,
"comma-dangle": 1,
"no-inner-declarations": [
1,
"both"
],
"no-mixed-spaces-and-tabs": 1,
"no-new-object": 1,
"no-shadow-restricted-names": 1,
"one-var": 0,
"radix": 1,
"space-before-blocks": [
1,
"always"
],
"space-infix-ops": 1,
"vars-on-top": 1
}
}
}