-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "pink",
"version": "0.1.0",
"private": true,
"description": "Личный проект «Пинк» от HTML Academy",
"devDependencies": {
"@htmlacademy/editorconfig-cli": "1.x",
"autoprefixer": "7.1.x",
"browser-sync": "2.18.x",
"gulp": "3.9.x",
"gulp-csscomb": "^3.0.8",
"gulp-csso": "^3.0.0",
"gulp-plumber": "1.1.x",
"gulp-postcss": "7.0.x",
"gulp-rename": "^1.2.2",
"gulp-sass": "3.1.x",
"gulp-svgmin": "^1.2.4",
"gulp-svgstore": "^6.1.0",
"gulp-webp": "^2.3.0",
"stylelint": "8.1.x",
"stylelint-config-htmlacademy": "0.1.x"
},
"scripts": {
"editorconfig": "editorconfig-cli",
"stylelint": "stylelint 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": [
"*.html",
"*.json",
"*.js",
"js/**/*.js",
"img/**/*.svg",
"sass/**/*.{sass,scss}"
],
"engines": {
"node": "8.2"
},
"dependencies": {}
}