package.json 743 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "hls-tools",
  3. "version": "0.0.0",
  4. "description": "HTTP Live Streaming (HLS) tools",
  5. "keywords": ["hls", "m3u8", "streaming"],
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "mocha -R list"
  9. },
  10. "directories": {
  11. "test": "test"
  12. },
  13. "bin": {
  14. "hlsdump": "./bin/hlsdump",
  15. "hlsmon": "./bin/hlsmon"
  16. },
  17. "repository": {
  18. "type" : "git", "url": "http://github.com/kanongil/node-hls-tools.git"
  19. },
  20. "author": "Gil Pedersen <gpdev@gpost.dk>",
  21. "license": "BSD",
  22. "dependencies": {
  23. "debug": "~0.7.0",
  24. "carrier": "~0.1.8",
  25. "commander": "~1.1.1",
  26. "async": "~0.1.22",
  27. "readable-stream": "~0.3.0",
  28. "http-get": "~0.5.2"
  29. },
  30. "devDependencies": {
  31. "mocha": "~1.7.4",
  32. "should": "~1.2.1"
  33. }
  34. }