-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 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
57
58
59
{
"name": "srt-webvtt",
"version": "1.3.2",
"description": "Convert SRT format subtitle to WebVTT on the fly over HTML5 environment",
"main": "lib/index.js",
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"scripts": {
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint ./index.js",
"build": "rm -rf lib && tsc",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imshaikot/srt-webvtt.git"
},
"keywords": [
"Subtitle",
"video",
"subtitle",
"track",
"element",
"srt-to-vtt",
"srt-to-webvtt",
"converter",
"html5",
"video",
"html5",
"video",
"track",
"html5",
"video",
"subtitle",
"str",
"support"
],
"author": "Shariar Shaikot",
"license": "MIT",
"bugs": {
"url": "https://github.com/imshaikot/srt-webvtt/issues"
},
"homepage": "https://github.com/imshaikot/srt-webvtt#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}