forked from osk/node-webvtt
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.13 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
{
"name": "node-srt",
"version": "2.0.1",
"description": "SRT parser, compiler, and segmenter with HLS support",
"main": "index.js",
"scripts": {
"eslint": "eslint *.js **/*.js",
"test": "npm run eslint -s && nyc mocha -R dot"
},
"keywords": [
"segment",
"hls",
"subtitle",
"closed",
"caption",
"srt",
"subrip"
],
"repository": {
"type": "git",
"url": "git://github.com/goatandsheep/node-srt"
},
"author": "Kemal Ahmed <goatandsheep@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^6.8.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"commander": "^7.0.0"
},
"engines": {
"node": ">= 8.16.0"
},
"files": [
"/lib",
"/bin",
"index.js"
],
"bin": {
"subrip-segment": "./bin/subrip-segment.js"
},
"nyc": {
"extension": [
".js"
],
"include": [
"lib/**/*.js"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true,
"check-coverage": true,
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
}
}