package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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",
  28. "dependencies": {
  29. "commander": "^2.3.0",
  30. "debug": "^2.0.0",
  31. "deep-equal": "^1.0.0",
  32. "hls-segment-reader": "^1.0.0",
  33. "m3u8parse": "^0.1.13",
  34. "measured": "^1.0.0",
  35. "mime-types": "^2.0.1",
  36. "mkdirp": "^0.5.0",
  37. "oncemore": "^1.0.0",
  38. "readable-stream": "~1.0.0",
  39. "streamprocess": "^1.0.0",
  40. "udp-blast": "^1.0.0",
  41. "uristream": "^1.1.0",
  42. "write-file-atomic": "^1.1.0"
  43. },
  44. "devDependencies": {},
  45. "engines": {
  46. "node": "~0.8.0 || >=0.9.12"
  47. }
  48. }