-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 716 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 716 Bytes
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
32
33
34
35
36
37
{
"name": "faststart",
"description": "Pseudo-streaming enabler of Quicktime and MP4 files.",
"version": "1.0.0",
"keywords": [
"fast",
"start",
"media",
"stream",
"streaming"
],
"author": "Gil Pedersen <gpdev@gpost.dk>",
"license": "BSD-2-Clause",
"main": "faststart.js",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"async": "^1.2.0"
},
"devDependencies": {
"mocha": "*"
},
"scripts": {
"test": "mocha -R list"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/kanongil/node-faststart.git"
},
"bugs": {
"url": "https://github.com/kanongil/node-faststart/issues"
}
}