package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "conventional-changelog-writer",
  3. "version": "5.0.1",
  4. "description": "Write logs based on conventional commits and templates",
  5. "bugs": {
  6. "url": "https://github.com/conventional-changelog/conventional-changelog/issues"
  7. },
  8. "homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme",
  9. "author": {
  10. "name": "Steve Mao",
  11. "email": "maochenyan@gmail.com",
  12. "url": "https://github.com/stevemao"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/conventional-changelog/conventional-changelog.git"
  17. },
  18. "license": "MIT",
  19. "engines": {
  20. "node": ">=10"
  21. },
  22. "files": [
  23. "index.js",
  24. "cli.js",
  25. "lib",
  26. "templates"
  27. ],
  28. "keywords": [
  29. "conventional-changelog-writer",
  30. "changelog",
  31. "conventional",
  32. "commits",
  33. "templates",
  34. "writer",
  35. "writing",
  36. "logs"
  37. ],
  38. "dependencies": {
  39. "conventional-commits-filter": "^2.0.7",
  40. "dateformat": "^3.0.0",
  41. "handlebars": "^4.7.7",
  42. "json-stringify-safe": "^5.0.1",
  43. "lodash": "^4.17.15",
  44. "meow": "^8.0.0",
  45. "semver": "^6.0.0",
  46. "split": "^1.0.0",
  47. "through2": "^4.0.0"
  48. },
  49. "scripts": {
  50. "test-windows": "echo 'make work on windows'"
  51. },
  52. "bin": {
  53. "conventional-changelog-writer": "cli.js"
  54. },
  55. "devDependencies": {
  56. "dedent": "^0.7.0",
  57. "forceable-tty": "^0.1.0"
  58. }
  59. }