package.json 1.1 KB

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