forked from bvibber/ogv.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.67 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
67
68
69
70
71
72
73
74
{
"name": "ogv",
"version": "1.7.0",
"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": "npx webpack --optimize-dedupe",
"lint": "npx eslint src/js",
"test": "make tests && npx static build/tests",
"demo": "npx static build/demo",
"start": "npx 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 <brion@pobox.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brion/ogv.js/issues"
},
"homepage": "https://github.com/brion/ogv.js#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"ast-types": "^0.11.5",
"audio-feeder": "^0.4.21",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"file-loader": "^3.0.1",
"node-static": "^0.7.7",
"recast": "^0.15.0",
"stream-file": "^0.2.4",
"strip-sourcemap-loader": "0.0.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.7.2",
"yuv-canvas": "^1.2.6"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"es6-promise": "^4.2.5"
},
"browserslist": "> 5%, IE 11"
}