| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "name": "hls-tools",
- "version": "0.0.0",
- "description": "HTTP Live Streaming (HLS) tools",
- "keywords": [
- "hls",
- "m3u8",
- "streaming"
- ],
- "main": "index.js",
- "scripts": {
- "test": "mocha -R list"
- },
- "directories": {
- "test": "test"
- },
- "bin": {
- "hlsdump": "./bin/hlsdump",
- "hlsmon": "./bin/hlsmon",
- "hlsrecord": "./bin/hlsrecord"
- },
- "repository": {
- "type": "git",
- "url": "http://github.com/kanongil/node-hls-tools.git"
- },
- "author": "Gil Pedersen <gpdev@gpost.dk>",
- "license": "BSD",
- "dependencies": {
- "carrier": "~0.1.8",
- "commander": "^2.3.0",
- "debug": "^2.0.0",
- "deep-equal": "^0.2.1",
- "hls-segment-reader": "^1.0.0",
- "m3u8parse": "^0.1.13",
- "measured": "~0.1.3",
- "mime-types": "^2.0.1",
- "mkdirp": "^0.5.0",
- "oncemore": "^1.0.0",
- "readable-stream": "~1.0.0",
- "streamprocess": "0.0.1",
- "udp-blast": "^1.0.0",
- "uristream": "^1.1.0",
- "write-file-atomic": "^1.1.0",
- "xtend": "^4.0.0"
- },
- "devDependencies": {
- "mocha": "~1.11.0",
- "should": "~1.2.1"
- },
- "engines": {
- "node": "~0.8.0 || >=0.9.12"
- }
- }
|