You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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": "node_modules/.bin/mocha --reporter spec",
  8. "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
  9. "coverage": "nyc npm run test"
  10. },
  11. "keywords": [
  12. "ppt to pdf and/or image",
  13. "pptx to pdf and/or image",
  14. "keynote to pdf and/or image",
  15. "odp to pdf and/or image",
  16. "ppt convert to pdf",
  17. "pdf to image",
  18. "imagemagick",
  19. "ghostscript",
  20. "libreoffice"
  21. ],
  22. "author": {
  23. "name": "Kalimuthu Selvaraj",
  24. "email": "kaalee6@gmail.com",
  25. "url": "https://github.com/kalimuthu-selvaraj"
  26. },
  27. "license": "ISC",
  28. "dependencies": {
  29. "async": "^3.2.0",
  30. "chai-as-promised": "^7.1.1",
  31. "nyc": "^15.1.0"
  32. },
  33. "devDependencies": {
  34. "babel-plugin-istanbul": "^6.0.0",
  35. "chai": "^4.0.0-canary.2",
  36. "coveralls": "^3.1.0",
  37. "cross-env": "^7.0.2",
  38. "istanbul": "^0.4.5",
  39. "mocha": "^7.2.0"
  40. },
  41. "engines": {
  42. "node": ">=6"
  43. }
  44. }