package.json 1021 B

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",
  28. "dependencies": {
  29. "carrier": "~0.1.8",
  30. "commander": "~1.1.1",
  31. "debug": "~0.7.0",
  32. "deep-equal": "0.0.0",
  33. "m3u8parse": "^0.1.8",
  34. "measured": "~0.1.3",
  35. "mime": "^1.2.11",
  36. "oncemore": "~0.1.0",
  37. "readable-stream": "~1.0.0",
  38. "streamprocess": "0.0.1",
  39. "uristream": "~0.1.0",
  40. "xtend": "^2.0.3"
  41. },
  42. "devDependencies": {
  43. "mocha": "~1.11.0",
  44. "should": "~1.2.1"
  45. },
  46. "engines": {
  47. "node": "~0.8.0 || >=0.9.12"
  48. }
  49. }