forked from imshaikot/srt-webvtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@clowdr-app/srt-webvtt",
"version": "0.0.0-development",
"description": "Convert subtitles from SRT to WebVTT in the browser",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/clowdr-app/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": "Ross Gardiner <[email protected]>",
"contributors": [
"Shariar Shaikot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/clowdr-app/srt-webvtt/issues"
},
"homepage": "https://github.com/clowdr-app/srt-webvtt#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"rollup": "^2.35.1",
"rollup-plugin-typescript2": "^0.29.0",
"semantic-release": "^17.3.1",
"typescript": "^4.1.3"
},
"release": {
"branches": [
{
"name": "stable",
"prerelease": false
},
{
"name": "next",
"channel": "next",
"prerelease": true
}
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}