-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 850 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
{
"name": "3dsub",
"version": "0.1.5",
"description": "Convert subtitles (SRT) to Advanced Substation Alpha (ASS) for correct output on 3D screens",
"homepage": "https://github.com/ChrisRM/node-3dsub",
"author": "Chris Magnussen <[email protected]> (http://codecandy.no/)",
"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/ChrisRM/node-3dsub.git"
},
"keywords": [
"srt",
"ass",
"subtitle"
],
"bugs": {
"url": "https://github.com/ChrisRM/node-3dsub/issues"
},
"devDependencies": {
"chai": "^2.1.1",
"mocha": "^2.2.0"
},
"dependencies": {
"lodash": "^3.4.0",
"mustache": "^1.1.0",
"moment": "^2.9.0"
}
}