-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "portfolio",
"version": "1.0.0",
"description": "Basic static website portfolio for Danine Noble.",
"main": "index.html",
"browserslist": [
"last 2 version",
"> 2%"
],
"scripts": {},
"keywords": [
"portfolio",
"static",
"html",
"css",
"sass"
],
"author": "Danine Noble",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.7.5",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-deporder": "^1.2.0",
"gulp-htmlclean": "^2.7.22",
"gulp-imagemin": "^5.0.3",
"gulp-newer": "^1.4.0",
"gulp-noop": "^1.0.0",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-strip-debug": "^3.0.0",
"gulp-terser": "^1.2.0",
"postcss-assets": "^5.0.0"
},
"stylelint": {
"rules": {
"font-family-no-duplicate-names": true,
"function-calc-no-invalid": true,
"function-calc-no-unspaced-operator": true,
"block-no-empty": true,
"comment-no-empty": true,
"comment-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"stylelint-commands",
"after-comment"
]
}
],
"no-descending-specificity": true,
"no-invalid-double-slash-comments": true,
"color-named": "never",
"number-max-precision": 4,
"shorthand-property-no-redundant-values": true,
"declaration-no-important": true,
"declaration-block-single-line-max-declarations": 1,
"selector-max-class": 2,
"selector-max-compound-selectors": 2,
"color-hex-case": "lower",
"font-family-name-quotes": "always-where-recommended",
"number-leading-zero": "never",
"string-quotes": "double",
"length-zero-no-unit": true,
"unit-case": "lower",
"declaration-block-semicolon-newline-after": "always-multi-line",
"declaration-block-trailing-semicolon": "always",
"block-closing-brace-newline-after": "always",
"block-opening-brace-space-before": "always",
"block-opening-brace-space-after": "always-single-line",
"selector-attribute-brackets-space-inside": "never",
"indentation": 2,
"max-empty-lines": [
1,
{
"ignore": [
"comments"
]
}
]
}
}
}