package.json 672 B

12345678910111213141516171819202122232425262728293031
  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. "repository": {
  14. "type" : "git", "url": "http://github.com/kanongil/node-hls-tools.git"
  15. },
  16. "author": "Gil Pedersen <gpdev@gpost.dk>",
  17. "license": "BSD",
  18. "dependencies": {
  19. "debug": "~0.7.0",
  20. "carrier": "~0.1.8",
  21. "commander": "~1.1.1",
  22. "async": "~0.1.22",
  23. "readable-stream": "~0.2.0",
  24. "http-get": "~0.5.2"
  25. },
  26. "devDependencies": {
  27. "mocha": "~1.7.4",
  28. "should": "~1.2.1"
  29. }
  30. }