-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
31 lines (31 loc) · 930 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "videostream",
"version": "3.2.2",
"description": "Streams data from a file-like seekable object into a `video` or `audio` node (a HTMLMediaElement)",
"main": "videostream.js",
"repository": {
"type": "git",
"url": "git://github.com/jhiesey/videostream.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "browserify videostream.js --standalone videostream > dist/index.js",
"build-example": "browserify example/index.js > example/built.js",
"start": "http-server example"
},
"author": "John Hiesey",
"license": "MIT",
"dependencies": {
"binary-search": "^1.3.4",
"mediasource": "^2.2.2",
"mp4-box-encoding": "^1.3.0",
"mp4-stream": "^3.0.0",
"pump": "^3.0.0",
"range-slice-stream": "^2.0.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"http-server": "^0.11.1",
"readable-stream": "^3.0.6"
}
}