-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "pink",
"version": "16.0.0",
"private": true,
"description": "Личный проект «Pink» от HTML Academy",
"devDependencies": {
"@htmlacademy/editorconfig-cli": "1.x",
"autoprefixer": "9.5.x",
"browser-sync": "^2.26.7",
"deep-extend": ">=0.5.1",
"gulp": "^4.0.2",
"gulp-csso": "^3.0.1",
"gulp-imagemin": "^6.2.0",
"gulp-less": "^4.0.1",
"gulp-plumber": "1.2.x",
"gulp-postcss": "8.0.x",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-webp": "^4.0.1",
"merge": ">=1.2.1",
"stylelint": "9.10.x",
"stylelint-config-htmlacademy": "^0.1.4"
},
"scripts": {
"editorconfig": "editorconfig-cli",
"stylelint": "stylelint \"source/less/**/*.less\" --syntax less",
"test": "npm run editorconfig && npm run stylelint",
"build": "gulp css",
"start": "gulp start"
},
"browserslist": [
"last 2 versions",
"IE 11",
"Firefox ESR"
],
"editorconfig-cli": [
"*.json",
"*.js",
"source/*.html",
"source/js/**/*.js",
"source/img/**/*.svg",
"source/less/**/*.less"
],
"engines": {
"node": "8.15"
},
"dependencies": {
"push-dir": "^0.4.1"
}
}