-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1018 Bytes
/
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
{
"name": "cat-energy",
"version": "14.0.0",
"private": true,
"description": "Личный проект «Кэт энерджи» от HTML Academy",
"devDependencies": {
"@htmlacademy/editorconfig-cli": "1.x",
"autoprefixer": "8.3.x",
"browser-sync": "2.23.x",
"gulp": "3.9.x",
"gulp-bem-css": "^1.1.3",
"gulp-plumber": "1.2.x",
"gulp-postcss": "7.0.x",
"gulp-sass": "4.0.x",
"stylelint": "9.2.x",
"stylelint-config-htmlacademy": "0.1.x"
},
"scripts": {
"editorconfig": "editorconfig-cli",
"stylelint": "stylelint \"source/sass/**/*.scss\" --syntax scss",
"test": "npm run editorconfig && npm run stylelint",
"build": "gulp style",
"start": "gulp serve"
},
"browserslist": [
"last 2 versions",
"IE 11",
"Firefox ESR"
],
"editorconfig-cli": [
"*.json",
"*.js",
"source/*.html",
"source/js/**/*.js",
"source/img/**/*.svg",
"source/sass/**/*.{sass,scss}"
],
"engines": {
"node": "8.11"
}
}