-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "html-gulp-starter",
"description": "Starter HTML/CSS/JS project with gulp.",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"img-compress": "gulp img-compress",
"start": "gulp dev",
"deploy": "git add build && git commit -m 'update' && gh-pages -d build",
"gh-deploy": "echo \"Running deploy to gh-pages...\" && gh-pages -d build"
},
"pre-push": [
"gh-deploy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MishaChernov/html-starter.git"
},
"author": "MishaChernov",
"license": "ISC",
"bugs": {
"url": "https://github.com/MishaChernov/html-starter/issues"
},
"homepage": "https://github.com/MishaChernov/html-starter#readme",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@ronilaukkarinen/gulp-stylelint": "^14.0.8",
"autoprefixer": "^10.4.5",
"browser-sync": "^2.27.9",
"compress-images": "^2.0.5",
"css-mqpacker": "^7.0.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-cheerio": "^1.0.0",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-imagemin": "^8.0.0",
"gulp-newer": "^1.4.0",
"gulp-notify": "^4.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-svgmin": "^4.1.0",
"multipipe": "^4.0.0",
"node-sass": "^7.0.1",
"pngquant-bin": "^6.0.1",
"postcss-scss": "^4.0.4",
"pre-push": "^0.1.2",
"sass": "^1.51.0",
"stylelint": "^14.15.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0"
},
"dependencies": {
"gh-pages": "^3.2.3"
}
}