package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "hls-tools",
  3. "version": "0.0.0",
  4. "description": "HTTP Live Streaming (HLS) tools",
  5. "keywords": [
  6. "hls",
  7. "m3u8",
  8. "streaming"
  9. ],
  10. "main": "index.js",
  11. "scripts": {
  12. "test": "mocha -R list"
  13. },
  14. "directories": {
  15. "test": "test"
  16. },
  17. "bin": {
  18. "hlsdump": "./bin/hlsdump",
  19. "hlsmon": "./bin/hlsmon",
  20. "hlsrecord": "./bin/hlsrecord"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "http://github.com/kanongil/node-hls-tools.git"
  25. },
  26. "author": "Gil Pedersen <gpdev@gpost.dk>",
  27. "license": "BSD-2-Clause",
  28. "dependencies": {
  29. "aws-sdk": "^2.179.0",
  30. "bounce": "^1.2.0",
  31. "commander": "^2.3.0",
  32. "debug": "^2.0.0",
  33. "hls-segment-reader": "^4.0.1",
  34. "m3u8parse": "^1.0.0",
  35. "measured": "^1.0.0",
  36. "mime-types": "^2.0.1",
  37. "mkdirp": "^0.5.0",
  38. "noptify": "0.0.3",
  39. "pati": "^1.1.0",
  40. "readable-stream": "^2.0.2",
  41. "stream-each": "^1.1.2",
  42. "udp-blast": "^1.0.0",
  43. "uristream": "^2.0.0",
  44. "write-file-atomic": "^2.3.0"
  45. },
  46. "devDependencies": {},
  47. "engines": {
  48. "node": ">=8.9.0"
  49. }
  50. }