-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "gt-passion",
"version": "1.0.0",
"description": "GT Passion WordPress Theme",
"main": "gulpfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"export": "git archive HEAD -9 --prefix gt-passion/ --format=zip > ../../gt-passion.zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Netzberufler/gt-passion.git"
},
"author": "GermanThemes",
"license": "GPL-3.0",
"homepage": "https://github.com/Netzberufler/gt-passion",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.2.1",
"gulp-uglify": "^3.0.2",
"postcss-sorting": "^3.1.0",
"postcss-wprtl": "^1.2.1",
"stylelint": "^13.13.1",
"stylelint-config-wordpress": "^15.0.0"
},
"stylelint": {
"extends": [
"stylelint-config-wordpress",
"stylelint-config-wordpress/scss"
],
"rules": {
"indentation": "tab",
"no-descending-specificity": null,
"font-weight-notation": "named-where-possible",
"rule-empty-line-before": [
"always",
{
"ignore": [
"first-nested",
"after-comment"
]
}
],
"at-rule-empty-line-before": [
"always",
{
"except": [
"inside-block"
],
"ignore": [
"after-comment",
"blockless-after-same-name-blockless"
]
}
]
}
}
}