package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@tabler/icons",
  3. "version": "2.4.0",
  4. "license": "MIT",
  5. "author": "codecalm",
  6. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/tabler/tabler-icons.git"
  10. },
  11. "main": "dist/cjs/index.js",
  12. "main:es": "dist/es/index.js",
  13. "main:umd": "dist/umd/index.js",
  14. "main:umd:min": "dist/umd/index.min.js",
  15. "module": "dist/esm/index.js",
  16. "unpkg": "dist/umd/index.min.js",
  17. "sideEffects": false,
  18. "files": [
  19. "dist/*",
  20. "tags.json",
  21. "src/tabler-nodes.json",
  22. "src/tabler-contents.json",
  23. "svg/*",
  24. "src/tabler-sprite.svg",
  25. "src/tabler-sprite-nostroke.svg"
  26. ],
  27. "types": "dist/index.d.ts",
  28. "homepage": "https://tabler-icons.io",
  29. "bugs": {
  30. "url": "https://github.com/tabler/tabler-icons/issues"
  31. },
  32. "funding": {
  33. "type": "github",
  34. "url": "https://github.com/sponsors/codecalm"
  35. },
  36. "scripts": {
  37. "clean": "rm -rf dist",
  38. "build": "pnpm run clean && node build.mjs && rollup -c ./rollup.config.mjs",
  39. "test": "jest --env=jsdom"
  40. },
  41. "keywords": [
  42. "icons",
  43. "svg",
  44. "png",
  45. "iconfont",
  46. "react",
  47. "front-end",
  48. "web"
  49. ],
  50. "jest": {
  51. "testEnvironmentOptions": {
  52. "customExportConditions": [
  53. "node",
  54. "node-addons"
  55. ]
  56. },
  57. "transform": {
  58. "^.+\\.js$": "babel-jest"
  59. }
  60. }
  61. }