-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.04 KB
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
{
"name": "node-webvtt",
"version": "2.0.0",
"description": "WebVTT parser, compiler, and segmenter with HLS support",
"main": "index.js",
"types": "types.d.ts",
"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.5.0",
"eslint": "^7.32.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">= 22"
},
"files": [
"/lib",
"index.js"
],
"nyc": {
"extension": [
".js"
],
"include": [
"lib/**/*.js"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true,
"check-coverage": true,
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
}
}