forked from tsur/vtt-to-srt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 965 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
32
33
34
35
36
37
38
39
{
"name": "node-vtt-to-srt",
"version": "1.0.1",
"description": "Convert Web VTT(The Web Video Text Tracks Format, aka html5 video subtitles) into SubRip SRT",
"author": "Riaz Laskar (@riazXrazor)<[email protected]>",
"license": "MIT",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"test": "tape test.js",
"build": "babel index.es6 > index.js"
},
"dependencies": {
"pumpify": "^1.3.3",
"split2": "^0.2.1",
"through2": "^0.6.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"concat-stream": "^1.4.10",
"tape": "^3.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/riazXrazor/vtt-to-srt.git"
},
"bugs": {
"url": "https://github.com/riazXrazor/vtt-to-srt/issues"
},
"homepage": "https://github.com/riazXrazor/vtt-to-srt",
"keywords": [
"webvtt",
"srt",
"subtitles",
"html5"
]
}