-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "@eyevinn/hls-vodtolive",
"version": "4.1.4",
"description": "NPM library to generate HLS Live from HLS VOD",
"main": "index.js",
"scripts": {
"test": "jasmine",
"doc": "jsdoc2md index.js > API.md",
"prebuild": "npm test",
"build": "npm run doc",
"version:rc": "npm version prerelease --preid=rc",
"version": "npm run build && git add API.md",
"postversion": "git push && git push --tags",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"author": "Eyevinn Technology <[email protected]>",
"contributors": [
"Jonas Rydholm Birmé <[email protected]> (Eyevinn Technology AB)",
"Alan Allard <[email protected]> (Eyevinn Technology AB)"
],
"keywords": [
"hls",
"m3u8",
"vodtolive"
],
"repository": {
"type": "git",
"url": "https://github.com/Eyevinn/hls-vodtolive"
},
"bugs": {
"url": "https://github.com/Eyevinn/hls-vodtolive/issues"
},
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.11",
"jasmine": "^3.5.0",
"jsdoc-to-markdown": "^7.1.1",
"minimist": ">=0.2.1",
"nyc": "^15.0.1"
},
"dependencies": {
"@eyevinn/m3u8": "^0.5.8",
"abort-controller": "^3.0.0",
"debug": "^4.1.1",
"node-fetch": "2.6.7"
}
}