web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2 KiB

  1. {
  2. "name": "sanitize.css",
  3. "version": "10.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. "forms.css",
  18. "page.css",
  19. "sanitize.css",
  20. "typography.css"
  21. ],
  22. "scripts": {
  23. "prepublishOnly": "npm test",
  24. "test": "stylelint *.css"
  25. },
  26. "devDependencies": {
  27. "stylelint": "^10.0.1",
  28. "stylelint-config-standard": "^18.3.0"
  29. },
  30. "stylelint": {
  31. "extends": "stylelint-config-standard",
  32. "rules": {
  33. "font-family-no-duplicate-names": [
  34. true,
  35. {
  36. "ignoreFontFamilyNames": [
  37. "monospace"
  38. ]
  39. }
  40. ],
  41. "no-descending-specificity": [
  42. null
  43. ]
  44. }
  45. },
  46. "keywords": [
  47. "css",
  48. "normalizes",
  49. "sanitizes",
  50. "browsers",
  51. "fixes"
  52. ]
  53. }