package.json 803 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "request": "~2.16.0"
  33. },
  34. "devDependencies": {
  35. "mocha": "~1.7.4",
  36. "should": "~1.2.1"
  37. },
  38. "engines" : {
  39. "node" : "~0.8.0 || >=0.9.12"
  40. }
  41. }