-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
154 lines (154 loc) · 5.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "tyfy",
"version": "2.0.12",
"description": "a framework for typographic structure and common content patterns",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-css": "./bin/build-css",
"build-css-dev": "./bin/build-css-dev",
"build-css-test": "./bin/build-css-test",
"build-icons": "./bin/build-icons",
"build-docs": "node docs/docs.js",
"build-js": "node source/scripts.js",
"fractal-start": "fractal start --sync",
"watch-css": "./bin/watch-css",
"watch-css-dev": "./bin/watch-css-dev",
"watch-css-test": "./bin/watch-css-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronpinero/typography.git"
},
"keywords": [
"css",
"typography"
],
"author": "Aaron Pinero",
"license": "ISC",
"bugs": {
"url": "https://github.com/aaronpinero/typography/issues"
},
"homepage": "https://github.com/aaronpinero/typography#readme",
"devDependencies": {
"@frctl/fractal": "^1.5.4",
"autoprefixer": "^10.2.4",
"glob": "^7.1.6",
"nodemon": "^1.19.3",
"postcss-cli": "^8.3.1",
"sass": "^1.32.8",
"stylelint": "^13.12.0",
"stylelint-scss": "^3.19.0",
"templatesjs": "^2.0.0",
"terser": "^4.8.0",
"webfont": "^9.0.0"
},
"browserslist": [
"> 5%"
],
"stylelint": {
"rules": {
"color-no-invalid-hex": true,
"font-family-no-duplicate-names": true,
"function-calc-no-unspaced-operator": true,
"function-linear-gradient-no-nonstandard-direction": true,
"string-no-newline": true,
"unit-no-unknown": true,
"property-no-unknown": [
true,
{
"checkPrefixed": true
}
],
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-shorthand-property-overrides": true,
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-no-unknown": true,
"comment-no-empty": true,
"no-duplicate-at-import-rules": true,
"no-empty-source": true,
"no-extra-semicolons": true,
"shorthand-property-no-redundant-values": true,
"declaration-block-single-line-max-declarations": 1,
"selector-max-empty-lines": 0,
"no-unknown-animations": true,
"color-hex-case": "lower",
"font-family-name-quotes": "always-where-recommended",
"function-comma-space-after": "never",
"function-comma-space-before": "never",
"function-max-empty-lines": 0,
"function-name-case": "lower",
"function-parentheses-space-inside": "never",
"function-url-quotes": [
"always",
{
"except": [
"empty"
]
}
],
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"string-quotes": [
"double",
{
"avoidEscape": false
}
],
"unit-case": "lower",
"value-keyword-case": "lower",
"value-list-max-empty-lines": 0,
"property-case": "lower",
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"declaration-colon-space-after": "never",
"declaration-colon-space-before": "never",
"declaration-block-semicolon-newline-after": "always-multi-line",
"declaration-block-semicolon-newline-before": "never-multi-line",
"declaration-block-semicolon-space-after": "always-single-line",
"declaration-block-semicolon-space-before": "never",
"declaration-block-trailing-semicolon": "always",
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": "always",
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-before": "always-single-line",
"block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-space-after": "always-single-line",
"block-opening-brace-space-before": "always",
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
"selector-attribute-quotes": "always",
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-descendant-combinator-no-non-space": true,
"selector-pseudo-class-case": "lower",
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-pseudo-element-case": "lower",
"selector-pseudo-element-colon-notation": "double",
"selector-type-case": "lower",
"selector-list-comma-newline-after": "always-multi-line",
"selector-list-comma-space-before": "never",
"media-feature-colon-space-after": "never",
"media-feature-colon-space-before": "never",
"media-feature-name-case": "lower",
"media-feature-parentheses-space-inside": "never",
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always-single-line",
"at-rule-semicolon-newline-after": "always",
"at-rule-semicolon-space-before": "never",
"indentation": 2,
"max-empty-lines": 1,
"no-eol-whitespace": [
true,
{
"ignore": [
"empty-lines"
]
}
]
}
}
}