package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "description": "The iconic font, CSS, and SVG framework",
  3. "keywords": [
  4. "font",
  5. "awesome",
  6. "fontawesome",
  7. "icon",
  8. "svg",
  9. "bootstrap"
  10. ],
  11. "homepage": "https://fontawesome.com",
  12. "bugs": {
  13. "url": "https://github.com/FortAwesome/Font-Awesome/issues"
  14. },
  15. "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/FortAwesome/Font-Awesome"
  19. },
  20. "engines": {
  21. "node": ">=6"
  22. },
  23. "dependencies": {
  24. "@fortawesome/fontawesome-common-types": "6.1.1"
  25. },
  26. "version": "6.1.1",
  27. "name": "@fortawesome/free-brands-svg-icons",
  28. "main": "index.js",
  29. "module": "index.es.js",
  30. "jsnext:main": "index.es.js",
  31. "license": "(CC-BY-4.0 AND MIT)",
  32. "types": "./index.d.ts",
  33. "sideEffects": false,
  34. "exports": {
  35. ".": {
  36. "import": "./index.es.js",
  37. "require": "./index.js",
  38. "default": "./index.js"
  39. },
  40. "./index": {
  41. "import": "./index.es.js",
  42. "require": "./index.js",
  43. "default": "./index.js"
  44. },
  45. "./index.js": {
  46. "import": "./index.es.js",
  47. "require": "./index.js",
  48. "default": "./index.js"
  49. },
  50. "./*": "./*.js"
  51. },
  52. "scripts": {
  53. "postinstall": "node attribution.js"
  54. }
  55. }