-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
67 lines (67 loc) · 1.52 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
{
"name": "@jr-cologne/create-gulp-starter-kit",
"version": "0.11.0-beta",
"description": "A simple Gulp 4 Starter Kit for modern web development.",
"keywords": [
"gulp",
"gulp-starter-kit",
"sass",
"scss",
"less",
"stylus",
"pug",
"babel",
"browser-sync",
"autoprefixer",
"modern-web-dev",
"imagemin",
"sourcemaps",
"webpack-stream",
"es6-modules"
],
"scripts": {
"start": "gulp",
"build": "gulp build"
},
"bin": {
"create-gulp-starter-kit": "./bin/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jr-cologne/gulp-starter-kit.git"
},
"author": "JR Cologne",
"license": "MIT",
"bugs": {
"url": "https://github.com/jr-cologne/gulp-starter-kit/issues"
},
"homepage": "https://github.com/jr-cologne/gulp-starter-kit",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"browser-sync": "^2.26.10",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-dependents": "^1.2.5",
"gulp-imagemin": "^7.1.0",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.2.1",
"gulp-pug": "^4.0.1",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylus": "^2.7.0",
"gulp-uglify": "^3.0.2",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"axios": "^0.21.1",
"fs-extra": "^9.0.1"
},
"engines": {
"node": ">=10"
}
}