forked from bvibber/ogv.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.42 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ogv",
"version": "1.5.8",
"description": "JavaScript media player using Ogg/Vorbis/Theora/Opus/WebM libs compiled with Emscripten",
"main": "index.js",
"files": [
"index.js",
"README.md",
"COPYING",
"dist/"
],
"scripts": {
"prepublish": "make dist",
"build": "webpack --optimize-dedupe",
"lint": "eslint src/js",
"test": "make tests && static build/tests",
"demo": "static build/demo",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brion/ogv.js.git"
},
"keywords": [
"multimedia",
"audio",
"video",
"decoder",
"codec",
"player",
"ogg",
"oga",
"ogv",
"ogvjs",
"ogv.js",
"Vorbis",
"Theora",
"VP8",
"VP9",
"Opus",
"WebM",
"Web Audio",
"emscripten"
],
"author": "Brion Vibber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brion/ogv.js/issues"
},
"homepage": "https://github.com/brion/ogv.js#readme",
"devDependencies": {
"ast-types": "^0.11.5",
"audio-feeder": "0.4.9",
"es6-promise": "^4.2.4",
"eslint": "^4.19.1",
"file-loader": "^1.1.11",
"node-static": "^0.7.7",
"recast": "^0.15.0",
"stream-file": "0.2.3",
"strip-sourcemap-loader": "0.0.1",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"yuv-canvas": "^1.2.1"
}
}