package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "mammoth",
  3. "version": "1.4.21",
  4. "author": "Michael Williamson <mike@zwobble.org>",
  5. "description": "Convert Word documents from docx to simple HTML and Markdown",
  6. "keywords": [
  7. "docx",
  8. "html",
  9. "office",
  10. "word",
  11. "markdown",
  12. "md"
  13. ],
  14. "main": "./lib/index.js",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/mwilliamson/mammoth.js.git"
  18. },
  19. "dependencies": {
  20. "argparse": "~1.0.3",
  21. "bluebird": "~3.4.0",
  22. "dingbat-to-unicode": "^1.0.1",
  23. "jszip": "^3.7.1",
  24. "lop": "^0.4.1",
  25. "path-is-absolute": "^1.0.0",
  26. "sax": "~1.1.1",
  27. "underscore": "^1.13.1",
  28. "xmlbuilder": "^10.0.0"
  29. },
  30. "devDependencies": {
  31. "browserify": "~13.0.1",
  32. "browserify-prepend-licenses": "~1.0.0",
  33. "duck": "^0.1.12",
  34. "eslint": "2.13.1",
  35. "hamjest": "2.13.0",
  36. "mocha": "~2.2.5",
  37. "temp": "^0.9.4",
  38. "uglify-js": "~2.4.8"
  39. },
  40. "browser": {
  41. "./lib/unzip.js": "./browser/unzip.js",
  42. "./lib/docx/files.js": "./browser/docx/files.js"
  43. },
  44. "bin": {
  45. "mammoth": "bin/mammoth"
  46. },
  47. "scripts": {
  48. "pretest": "eslint lib test",
  49. "test": "mocha 'test/**/*.tests.js'",
  50. "prepublish": "make mammoth.browser.min.js"
  51. },
  52. "license": "BSD-2-Clause"
  53. }