forked from necolas/normalize.css
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
37 lines (37 loc) · 979 Bytes
/
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
{
"name": "normalize.css",
"version": "7.0.0",
"description": "A modern alternative to CSS resets",
"main": "normalize.css",
"style": "normalize.css",
"files": [
"LICENSE.md",
"normalize.css"
],
"devDependencies": {
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0"
},
"scripts": {
"test": "stylelint normalize.css"
},
"repository": "jonathantneal/normalize.css",
"contributors": [
"Jonathan Neal <[email protected]> (http://jonathantneal.com/)",
"Nicolas Gallagher <[email protected]> (http://nicolasgallagher.com/)"
],
"license": "MIT",
"bugs": "https://github.com/jonathantneal/normalize.css/issues",
"homepage": "https://jonathantneal.github.io/normalize.css",
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"font-family-no-duplicate-names": [
true,
{
"ignoreFontFamilyNames": ["monospace"]
}
]
}
}
}