package.json 914 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "fluent-ffmpeg",
  3. "version": "2.1.3",
  4. "description": "A fluent API to FFMPEG (http://www.ffmpeg.org)",
  5. "keywords": [
  6. "ffmpeg"
  7. ],
  8. "author": "Stefan Schaermeli <schaermu@gmail.com>",
  9. "contributors": [
  10. {
  11. "name": "Felix Fichte",
  12. "email": "spruce@space-ships.de"
  13. }
  14. ],
  15. "license": "MIT",
  16. "bugs": {
  17. "mail": "schaermu@gmail.com",
  18. "url": "http://github.com/fluent-ffmpeg/node-fluent-ffmpeg/issues"
  19. },
  20. "repository": "git://github.com/fluent-ffmpeg/node-fluent-ffmpeg.git",
  21. "devDependencies": {
  22. "jsdoc": "^4.0.0",
  23. "mocha": "^10.0.0",
  24. "nyc": "^15.1.0",
  25. "should": "^13.0.0"
  26. },
  27. "dependencies": {
  28. "async": "^0.2.9",
  29. "which": "^1.1.1"
  30. },
  31. "engines": {
  32. "node": ">=18"
  33. },
  34. "main": "index",
  35. "scripts": {
  36. "test": "NODE_ENV=test nyc mocha --require should --reporter spec",
  37. "coverage": "nyc report --reporter=lcov"
  38. }
  39. }