forked from csstools/normalize.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "@csstools/normalize.css",
"version": "11.0.1",
"description": "A cross-browser CSS foundation",
"author": "Jonathan Neal <[email protected]>",
"contributors": [
"Jonathan Neal <[email protected]> (http://jonathantneal.com/)",
"Nicolas Gallagher <[email protected]> (http://nicolasgallagher.com/)",
"Luciano Battagliero <[email protected]> (https://lucianobattagliero.com/)"
],
"license": "CC0-1.0",
"repository": "csstools/normalize.css",
"homepage": "https://github.com/csstools/normalize.css#readme",
"bugs": "https://github.com/csstools/normalize.css/issues",
"main": "normalize.css",
"style": "normalize.css",
"files": [
"normalize.css",
"evergreen.css",
"opinionated.css",
"opinionated.evergreen.css"
],
"scripts": {
"prepublishOnly": "npm test",
"test": "stylelint normalize.css evergreen.css opinionated.css opinionated.evergreen.css"
},
"devDependencies": {
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"font-family-no-duplicate-names": [
true,
{
"ignoreFontFamilyNames": [
"monospace"
]
}
]
}
},
"keywords": [
"css",
"normalizes",
"browsers",
"fixes"
]
}