package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "tabler-icons",
  3. "version": "1.24.0",
  4. "repository": {
  5. "type": "git",
  6. "url": "git+https://github.com/tabler/tabler-icons.git"
  7. },
  8. "main": "./icons-react/index.js",
  9. "module": "./icons-react/index.js",
  10. "types": "./icons-react/index.d.ts",
  11. "author": "",
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/tabler/tabler-icons/issues"
  15. },
  16. "funding": {
  17. "type": "github",
  18. "url": "https://github.com/sponsors/codecalm"
  19. },
  20. "files": [
  21. "icons/*",
  22. "icons-png/*",
  23. "icons-react/*",
  24. "iconfont/*",
  25. "tags.json",
  26. "tabler-sprite.svg",
  27. "tabler-sprite-nostroke.svg"
  28. ],
  29. "homepage": "https://github.com/tabler/tabler-icons#readme",
  30. "scripts": {
  31. "start": "bundle exec jekyll serve --watch --livereload --trace --livereload_port 8888",
  32. "optimize": "gulp optimize",
  33. "release": "release-it"
  34. },
  35. "description": "",
  36. "devDependencies": {
  37. "@svgr/core": "5.4.0",
  38. "@svgr/babel-plugin-replace-jsx-attribute-value": "5.0.1",
  39. "clean-css": "4.2.3",
  40. "glob": "7.1.6",
  41. "gulp": "4.0.2",
  42. "gulp-iconfont": "10.0.3",
  43. "gulp-zip": "5.0.2",
  44. "lodash.template": "4.5.0",
  45. "minimist": "1.2.5",
  46. "node-sass": "4.14.1",
  47. "puppeteer": "5.3.0",
  48. "release-it": "14.0.3",
  49. "svg-outline-stroke": "1.3.0"
  50. },
  51. "release-it": {
  52. "hooks": {
  53. "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} --verbose",
  54. "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
  55. },
  56. "git": {
  57. "addUntrackedFiles": true,
  58. "changelog": "gulp changelog --silent --latest-tag ${latestTag}",
  59. "tagName": "v${version}",
  60. "requireBranch": "master",
  61. "requireCommits": true
  62. },
  63. "github": {
  64. "release": true
  65. }
  66. }
  67. }