package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "jsdoc",
  3. "version": "4.0.0",
  4. "revision": "1667500635552",
  5. "description": "An API documentation generator for JavaScript.",
  6. "keywords": [
  7. "documentation",
  8. "javascript"
  9. ],
  10. "license": "Apache-2.0",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/jsdoc/jsdoc"
  14. },
  15. "dependencies": {
  16. "@babel/parser": "^7.9.4",
  17. "@jsdoc/salty": "^0.2.1",
  18. "@types/markdown-it": "^12.2.3",
  19. "bluebird": "^3.7.2",
  20. "catharsis": "^0.9.0",
  21. "escape-string-regexp": "^2.0.0",
  22. "js2xmlparser": "^4.0.2",
  23. "klaw": "^3.0.0",
  24. "markdown-it": "^12.3.2",
  25. "markdown-it-anchor": "^8.4.1",
  26. "marked": "^4.0.10",
  27. "mkdirp": "^1.0.4",
  28. "requizzle": "^0.2.3",
  29. "strip-json-comments": "^3.1.0",
  30. "underscore": "~1.13.2"
  31. },
  32. "devDependencies": {
  33. "ajv": "^6.12.0",
  34. "gulp": "^4.0.2",
  35. "gulp-eslint": "^6.0.0",
  36. "gulp-json-editor": "^2.5.6",
  37. "nyc": "^15.1.0"
  38. },
  39. "engines": {
  40. "node": ">=12.0.0"
  41. },
  42. "scripts": {
  43. "test": "gulp lint; gulp test"
  44. },
  45. "bin": {
  46. "jsdoc": "./jsdoc.js"
  47. },
  48. "bugs": "https://github.com/jsdoc/jsdoc/issues",
  49. "author": {
  50. "name": "Michael Mathews",
  51. "email": "micmath@gmail.com"
  52. },
  53. "contributors": [
  54. {
  55. "name": "The JSDoc Contributors",
  56. "url": "https://github.com/jsdoc/jsdoc/graphs/contributors"
  57. }
  58. ],
  59. "maintainers": [
  60. {
  61. "name": "Jeff Williams",
  62. "email": "jeffrey.l.williams@gmail.com"
  63. }
  64. ]
  65. }