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.

47 lines
1.2 KiB

  1. {
  2. "name": "@csstools/normalize.css",
  3. "version": "10.1.0",
  4. "description": "A cross-browser 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/normalize.css",
  12. "homepage": "https://github.com/csstools/normalize.css#readme",
  13. "bugs": "https://github.com/csstools/normalize.css/issues",
  14. "main": "normalize.css",
  15. "style": "normalize.css",
  16. "files": [
  17. "normalize.css",
  18. "opinionated.css"
  19. ],
  20. "scripts": {
  21. "prepublishOnly": "npm test",
  22. "test": "stylelint normalize.css opinionated.css"
  23. },
  24. "devDependencies": {
  25. "stylelint": "^10.0.1",
  26. "stylelint-config-standard": "^18.3.0"
  27. },
  28. "stylelint": {
  29. "extends": "stylelint-config-standard",
  30. "rules": {
  31. "font-family-no-duplicate-names": [
  32. true,
  33. {
  34. "ignoreFontFamilyNames": [
  35. "monospace"
  36. ]
  37. }
  38. ]
  39. }
  40. },
  41. "keywords": [
  42. "css",
  43. "normalizes",
  44. "browsers",
  45. "fixes"
  46. ]
  47. }