-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 1.98 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
{
"name": "@kickoff/scss",
"title": "Kickoff SCSS source",
"description": "Kickoff SCSS source",
"version": "8.1.2",
"homepage": "http://trykickoff.com",
"authors": [
{
"name": "Zander Martineau",
"url": "http://zander.wtf"
}
],
"contributors": [
"Github contributors <https://github.com/TryKickoff/kickoff/graphs/contributors>"
],
"scripts": {
"test": "stylelint \"**/*.scss\" --syntax scss",
"release-patch": "release-it --non-interactive patch",
"release-minor": "release-it --non-interactive minor",
"release-major": "release-it --non-interactive major",
"release-premajor": "release-it premajor --prereleaseId=\"beta\""
},
"repository": {
"type": "git",
"url": "git://github.com/TryKickoff/scss.git"
},
"bugs": {
"url": "https://github.com/TryKickoff/kickoff/issues"
},
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"dependencies": {
"include-media": "1.4.9",
"kickoff-fluidVideo.css": "1.1.0",
"kickoff-grid.css": "1.1.1",
"kickoff-utils.scss": "2.0.3",
"normalize-scss": "6.0.0"
},
"devDependencies": {
"release-it": "^2.5.4",
"stylelint": "7.8.0",
"stylelint-config-standard": "16.0.0"
},
"keywords": [
"kickoff",
"⚽"
],
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": [
"tab",
{
"except": [
"value"
]
}
],
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"blockless-after-same-name-blockless",
"blockless-group"
]
}
],
"declaration-empty-line-before": [
"never"
],
"rule-non-nested-empty-line-before": [
"always-multi-line",
{
"except": [
"after-single-line-comment"
],
"ignore": [
"after-comment"
]
}
],
"max-empty-lines": 2
}
}
}