-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.37 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
{
"name": "gulp-kirby-starter-kit",
"version": "2.0.0-beta.2",
"description": "Getting started with Gulp v4 & Kirby v3 in no-time",
"author": "S1SYPHOS <[email protected]>",
"homepage": "https://github.com/S1SYPHOS/Gulp-Kirby-Starter-Kit#readme",
"main": "Gulpfile.js",
"repository": {
"type": "git",
"url": "git+https://github.com/S1SYPHOS/Gulp-Kirby-Starter-Kit.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/S1SYPHOS/Gulp-Kirby-Starter-Kit/issues"
},
"keywords": ["gulp", "kirby", "cms", "starterkit"],
"scripts": {
"start": "gulp",
"build": "NODE_ENV=production gulp build",
"deploy": "NODE_ENV=production gulp build && gulp deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"browser-sync": "^2.26.3",
"child_process": "^1.0.2",
"del": "^6.0.0",
"eslint": "^7.12.1",
"eslint-config-google": "^0.14.0",
"fs": "0.0.1-security",
"glyphhanger": "^3.2.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-connect-php": "^1.0.3",
"gulp-eslint": "^6.0.0",
"gulp-favicons": "^2.3.0",
"gulp-filter": "^6.0.0",
"gulp-flatten": "^0.4.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-newer": "^1.4.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-stylelint": "^13.0.0",
"gulp-svgmin": "^3.0.0",
"gulp-svgstore": "^7.0.1",
"gulp-uglify": "^3.0.2",
"imagemin-pngquant": "^9.0.1",
"penthouse": "^2.3.2",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"vinyl-named": "^1.1.0",
"webpack-stream": "^6.1.0"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"rules": {}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"env": {
"browser": true,
"node": true,
"es6": true,
"amd": true,
"commonjs": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": ["error", 2],
"max-len": ["warn", {"ignoreComments": true}],
"require-jsdoc": ["off"],
"one-var": ["off"]
}
},
"browserslist": [
"last 3 versions",
"> 1%",
"IE >= 9"
]
}