package.json 985 B

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. },
  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.1.0",
  38. "mime": "~1.2.11",
  39. "uristream": "~0.1.0"
  40. },
  41. "devDependencies": {
  42. "mocha": "~1.11.0",
  43. "should": "~1.2.1"
  44. },
  45. "engines": {
  46. "node": "~0.8.0 || >=0.9.12"
  47. }
  48. }