forked from ChrisRM/node-3dsub
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 861 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 861 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": "srt-to-ass",
"version": "0.1.9",
"description": "Convert subtitles (SRT) to Advanced Substation Alpha (ASS)",
"homepage": "https://github.com/OwenRay/srt-to-ass",
"author": "Chris Magnussen <chris@codecandy.no> (http://codecandy.no/) & OwenRay",
"license": "MIT",
"main": "index.js",
"bin": {
"3dsub": "bin/3dsub.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/OwenRay/srt-to-ass.git"
},
"keywords": [
"srt",
"ass",
"subtitle"
],
"bugs": {
"url": "https://github.com/OwenRay/srt-to-ass/issues"
},
"devDependencies": {
"chai": "^2.1.1",
"mocha": "^9.2.0"
},
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.9.0",
"mustache": "^2.3.0",
"striptags": "^3.0.1"
}
}