forked from videojs/vtt.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.4 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
75
76
77
78
79
80
81
82
83
84
85
{
"author": "Andreas Gal <[email protected]>",
"contributors": [
"Gary Katsevman <[email protected]>"
],
"name": "videojs-vtt.js",
"description": "A JavaScript implementation of the WebVTT specification, forked from vtt.js for use with Video.js",
"version": "0.15.8",
"main": "lib/browser-index.js",
"repository": {
"type": "git",
"url": "https://github.com/videojs/vtt.js.git"
},
"homepage": "https://github.com/videojs/vtt.js",
"devDependencies": {
"async": "0.9.0",
"browserify": "^14.3.0",
"deumdify": "^1.2.4",
"difflet": "git://github.com/humphd/difflet.git#714b82706ad39d75275a886aeff637df5097626f",
"dive": "0.3.1",
"eslint": "^6.7.1",
"grunt": "0.4.1",
"grunt-bump": "0.0.14",
"grunt-cli": "0.1.9",
"grunt-contrib-concat": "0.4.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-uglify": "0.5.0",
"grunt-mocha-test": "0.11.0",
"json-stable-stringify": "1.0.0",
"mocha": "1.20.1",
"node-vtt": "1.1.7",
"optimist": "0.6.1",
"text-encoding": "0.1.0",
"underscore": "1.6.0",
"watchify": "^3.9.0"
},
"files": [
"dist/",
"lib/browser-index.js",
"lib/browser.js",
"lib/convert-cue-to-dom-tree.js",
"lib/index.js",
"lib/parser/parse-cue.js",
"lib/parser/parse-options.js",
"lib/parser/parse-timestamp.js",
"lib/parser/parser.js",
"lib/parser/parsing-error.js",
"lib/parser/settings.js",
"lib/process/box-position.js",
"lib/process/compute-line-pos.js",
"lib/process/cue-style-box.js",
"lib/process/determine-bidi.js",
"lib/process/is-strong-rtl-char.js",
"lib/process/move-box-to-line-position.js",
"lib/process/parse-content.js",
"lib/process/process-cues.js",
"lib/process/style-box.js",
"lib/vtt.js",
"lib/vttcue-extended.js",
"lib/vttcue.js",
"lib/vttregion-extended.js",
"lib/vttregion.js"
],
"keywords": [
"vtt",
"webvtt",
"track",
"captions",
"subtitles",
"text track"
],
"scripts": {
"build": "npm run build-umd && npm run build-global",
"build-umd": "browserify -s vttjs . -o dist/vtt.js",
"build-global": "browserify -s vttjs -p deumdify . -o dist/vtt.global.js",
"postbuild": "npm run minify",
"minify": "grunt uglify:dist uglify:global",
"test": "grunt",
"prepublishOnly": "npm run build"
},
"license": "Apache-2.0",
"dependencies": {
"global": "^4.3.1"
}
}