package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "conventional-commits-parser",
  3. "version": "3.2.4",
  4. "description": "Parse raw conventional commits",
  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-commits-parser#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. ],
  27. "keywords": [
  28. "conventional-commits-parser",
  29. "changelog",
  30. "conventional",
  31. "parser",
  32. "parsing",
  33. "logs"
  34. ],
  35. "dependencies": {
  36. "is-text-path": "^1.0.1",
  37. "JSONStream": "^1.0.4",
  38. "lodash": "^4.17.15",
  39. "meow": "^8.0.0",
  40. "split2": "^3.0.0",
  41. "through2": "^4.0.0"
  42. },
  43. "scripts": {
  44. "test-windows": "echo 'make work on windows'"
  45. },
  46. "bin": {
  47. "conventional-commits-parser": "cli.js"
  48. },
  49. "devDependencies": {
  50. "forceable-tty": "^0.1.0"
  51. }
  52. }