source: frontend/node_modules/sanitize.css/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.3 KB
Line 
1{
2 "name": "sanitize.css",
3 "version": "13.0.0",
4 "description": "A best-practices CSS foundation",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "contributors": [
7 "Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
8 "Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
9 ],
10 "license": "CC0-1.0",
11 "repository": "csstools/sanitize.css",
12 "homepage": "https://github.com/csstools/sanitize.css#readme",
13 "bugs": "https://github.com/csstools/sanitize.css/issues",
14 "main": "sanitize.css",
15 "style": "sanitize.css",
16 "files": [
17 "assets.css",
18 "forms.css",
19 "reduce-motion.css",
20 "sanitize.css",
21 "system-ui.css",
22 "typography.css",
23 "ui-monospace.css"
24 ],
25 "scripts": {
26 "prepublishOnly": "npm test",
27 "test": "stylelint *.css"
28 },
29 "devDependencies": {
30 "stylelint": "^13.13.1",
31 "stylelint-config-standard": "^22.0.0"
32 },
33 "stylelint": {
34 "extends": "stylelint-config-standard",
35 "rules": {
36 "font-family-no-duplicate-names": [
37 true,
38 {
39 "ignoreFontFamilyNames": [
40 "monospace"
41 ]
42 }
43 ],
44 "no-descending-specificity": [
45 null
46 ]
47 }
48 },
49 "keywords": [
50 "css",
51 "normalizes",
52 "sanitizes",
53 "browsers",
54 "fixes"
55 ]
56}
Note: See TracBrowser for help on using the repository browser.