-
Notifications
You must be signed in to change notification settings - Fork 312
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "sanitize.css",
"version": "13.0.0",
"description": "A best-practices CSS foundation",
"author": "Jonathan Neal <[email protected]>",
"contributors": [
"Jonathan Neal <[email protected]> (http://jonathantneal.com/)",
"Nicolas Gallagher <[email protected]> (http://nicolasgallagher.com/)"
],
"license": "CC0-1.0",
"repository": "csstools/sanitize.css",
"homepage": "https://github.com/csstools/sanitize.css#readme",
"bugs": "https://github.com/csstools/sanitize.css/issues",
"main": "sanitize.css",
"style": "sanitize.css",
"files": [
"assets.css",
"forms.css",
"reduce-motion.css",
"sanitize.css",
"system-ui.css",
"typography.css",
"ui-monospace.css"
],
"scripts": {
"prepublishOnly": "npm test",
"test": "stylelint *.css"
},
"devDependencies": {
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"font-family-no-duplicate-names": [
true,
{
"ignoreFontFamilyNames": [
"monospace"
]
}
],
"no-descending-specificity": [
null
]
}
},
"keywords": [
"css",
"normalizes",
"sanitizes",
"browsers",
"fixes"
]
}