forked from 1c7/srt-parser-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "srt-parser-2",
"description": "Parse SRT into array",
"version": "1.1.6",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsc -watch",
"test": "mocha ./dist/test --recursive"
},
"bin": {
"srt-parser-2": "./bin/index.js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"chai": "^4.3.4",
"mocha": "*",
"should": "*",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"yargs": "^17.2.1"
},
"keywords": [
"subtitles",
"subtitle",
"srt",
"subrip",
"subtitle parser",
"srt parser",
"caption"
],
"repository": {
"type": "git",
"url": "git+https://github.com/1c7/srt-parser-2.git"
},
"author": "Cheng Zheng (chengzheng.apply@gmail.com)",
"bugs": {
"url": "https://github.com/1c7/srt-parser-2/issues"
},
"homepage": "https://github.com/1c7/srt-parser-2",
"prepublish": "tsc",
"engines": {
"node": "*"
},
"directories": {
"test": "test"
}
}