-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "meh-gulp",
"version": "1.0.0",
"description": "Build process for WP projects.",
"repository": "https://github.com/m-e-h",
"private": true,
"license": "GNU General Public License v2 or later",
"scripts": {
"start": "gulp"
},
"devDependencies": {
"autoprefixer": "^8.6.1",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"browser-sync": "^2.26.7",
"browserslist": "^4.6.6",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-header": "^2.0.9",
"gulp-imagemin": "^6.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rev": "^9.0.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^9.0.0",
"gulp-uglify": "3.0.2",
"postcss-color-function": "^4.1.0",
"postcss-custom-media": "^7.0.8",
"postcss-discard-comments": "^4.0.2",
"postcss-discard-empty": "^4.0.1",
"postcss-import": "^12.0.1",
"postcss-increase-specificity": "^0.6.0",
"postcss-mixins": "^6.2.2",
"postcss-nested": "^4.1.2",
"postcss-plugin-context": "^2.0.0",
"postcss-simple-vars": "^5.0.2",
"postcss-strip-units": "^2.0.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0"
},
"stylelint": {
"defaultSeverity": "warning",
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab"
}
},
"browserslist": [
"> 1%",
"ie >= 11",
"last 1 Android versions",
"last 1 ChromeAndroid versions",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions"
]
}