您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 814B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "document-convert",
  3. "version": "1.0.0",
  4. "description": "The package export ppt, pptx, odp and key files to pdf and/or img(png, jpg, jpeg and etc...).",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "keywords": [
  10. "ppt to pdf and/or image",
  11. "pptx to pdf and/or image",
  12. "keynote to pdf and/or image",
  13. "odp to pdf and/or image",
  14. "ppt convert to pdf",
  15. "pdf to image",
  16. "imagemagick",
  17. "ghostscript",
  18. "libreoffice"
  19. ],
  20. "author": {
  21. "name": "Kalimuthu Selvaraj",
  22. "email": "kaalee6@gmail.com",
  23. "url": "https://github.com/kalimuthu-selvaraj"
  24. },
  25. "license": "ISC",
  26. "dependencies": {
  27. "async": "^3.2.0"
  28. },
  29. "devDependencies": {
  30. "chai": "^4.2.0",
  31. "mocha": "^7.2.0"
  32. },
  33. "engines": {
  34. "node": ">=6"
  35. }
  36. }