-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
64 lines (64 loc) · 1.14 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-webvtt",
"version": "1.9.4",
"description": "WebVTT 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": [
"webvtt",
"vtt",
"segment",
"hls",
"subtitle",
"closed",
"caption"
],
"repository": {
"type": "git",
"url": "git://github.com/osk/node-webvtt"
},
"author": "Ólafur Sverrir Kjartansson <kjarni@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^7.20.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0"
},
"dependencies": {
"commander": "^7.1.0"
},
"engines": {
"node": ">= 8.16.0"
},
"files": [
"/lib",
"/bin",
"index.js"
],
"bin": {
"webvtt-segment": "./bin/webvtt-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
}
}