package.json 961 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. },
  21. "repository": {
  22. "type": "git",
  23. "url": "http://github.com/kanongil/node-hls-tools.git"
  24. },
  25. "author": "Gil Pedersen <gpdev@gpost.dk>",
  26. "license": "BSD",
  27. "dependencies": {
  28. "debug": "~0.7.0",
  29. "carrier": "~0.1.8",
  30. "commander": "~1.1.1",
  31. "readable-stream": "~1.0.0",
  32. "xtend": "~2.0.3",
  33. "deep-equal": "0.0.0",
  34. "measured": "~0.1.3",
  35. "streamprocess": "0.0.1",
  36. "oncemore": "~0.1.0",
  37. "m3u8parse": "0.0.2",
  38. "uristream": "~0.1.0"
  39. },
  40. "devDependencies": {
  41. "mocha": "~1.11.0",
  42. "should": "~1.2.1"
  43. },
  44. "engines": {
  45. "node": "~0.8.0 || >=0.9.12"
  46. }
  47. }