forked from bradzacher/FioriBuildEnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "sapn-ui5-build-env",
"version": "0.0.1",
"description": "Build environment for UI5",
"author": "Brad Zacher",
"license": "ISC",
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"browser-sync": "^2.12.3",
"btoa": "^1.1.2",
"del": "^2.2.0",
"electron-connect": "^0.4.2",
"electron-prebuilt": "^1.2.6",
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.10.2",
"extend": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-cssmin": "^0.1.7",
"gulp-eslint": "^3.0.1",
"gulp-html-replace": "^1.5.5",
"gulp-htmlmin": "^1.3.0",
"gulp-sass": "^2.2.0",
"gulp-scss-lint": "^0.3.9",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-ui5-preload": "^1.2.0",
"gulp-util": "^3.0.7",
"http-proxy-middleware": "^0.17.0",
"mkdirp": "^0.5.1",
"promise": "^7.1.1",
"zip-folder": "^1.0.0"
},
"//": "babel config",
"scripts": {
"preinstall": "gem install sass && gem install scss_lint",
"start": "gulp watch"
},
"eslintConfig": {
"globals": {
"sap": true,
"jQuery": true,
"$": true
},
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
},
"sourceType": "module"
},
"plugins": [],
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"spaced-comment": [
"warn",
"always",
{
"exceptions": [
"*"
]
}
],
"max-len": [
"warn",
200
],
"no-multi-spaces": [
"warn",
{
"exceptions": {
"VariableDeclarator": true
}
}
],
"no-unused-expressions": [
"error",
{
"allowShortCircuit": true
}
],
"strict": [
"off"
]
}
},
"babel": {
"presets": [
"es2015"
]
}
}