package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@honkit/html",
  3. "version": "6.0.2",
  4. "description": "Parse HTML content for gitbook",
  5. "homepage": "https://github.com/honkit/honkit",
  6. "bugs": {
  7. "url": "https://github.com/honkit/honkit/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/honkit/honkit.git"
  12. },
  13. "license": "Apache-2.0",
  14. "author": "azu <azuciao@gmail.com>",
  15. "contributors": [
  16. {
  17. "name": "FriendCode Inc.",
  18. "email": "contact@gitbook.com"
  19. },
  20. {
  21. "name": "Aaron O'Mullan",
  22. "email": "aaron@gitbook.com"
  23. },
  24. {
  25. "name": "Samy Pessé",
  26. "email": "samy@gitbook.com"
  27. }
  28. ],
  29. "main": "lib/index.js",
  30. "files": [
  31. "lib",
  32. "!__tests__"
  33. ],
  34. "scripts": {
  35. "build": "tsc -p .",
  36. "clean": "rimraf lib/",
  37. "test": "mocha",
  38. "prepublish": "npm run --if-present build"
  39. },
  40. "dependencies": {
  41. "cheerio": "^1.0.0",
  42. "lodash": "^4.17.21",
  43. "q": "^1.5.1"
  44. },
  45. "devDependencies": {
  46. "mocha": "^10.7.3",
  47. "rimraf": "^3.0.2",
  48. "ts-node": "^10.9.2",
  49. "typescript": "^5.6.2"
  50. },
  51. "publishConfig": {
  52. "access": "public"
  53. },
  54. "gitHead": "9dcd51c588177ee3a684788c633a67b82dea82a5"
  55. }