-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
{
"name": "srt-parser-2",
"description": "Parse SRT into array",
"version": "1.2.3",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc --declaration",
"dev": "tsc -watch",
"test": "mocha -r esbuild-register test/**/*.ts"
},
"bin": {
"srt-parser-2": "./bin/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"chai": "^4.3.7",
"esbuild-register": "^3.4.2",
"jest": "^29.3.1",
"mocha": "^10.2.0",
"should": "^13.2.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"yargs": "^17.6.2"
},
"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 ([email protected])",
"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"
}
}