-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
92 lines (92 loc) · 2.2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hls-fetcher",
"version": "2.3.0",
"description": "Fetch HLS segments from an m3u8 playlist",
"main": "src/index.js",
"scripts": {
"docs:toc": "doctoc README.md",
"lint": "vjsstandard",
"pretest": "npm run lint",
"start": "npm run test -- --watch",
"test": "NODE_ENV=test mocha test/unit",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"prepublishOnly": "vjsverify --skip-es-check"
},
"bin": {
"hls-fetcher": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/videojs/hls-fetcher.git"
},
"contributors": [
"Jon-Carlos Rivera <[email protected]> (http://jon-carlos.com/)",
"Brandon Casey <[email protected]> (https://github.com/brandonocasey)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/videojs/hls-fetcher/issues"
},
"homepage": "https://github.com/videojs/hls-fetcher#readme",
"dependencies": {
"aes-decrypter": "^3.1.2",
"bluebird": "^3.7.2",
"filenamify": "^4.3.0",
"m3u8-parser": "^4.7.0",
"mkdirp": "^1.0.4",
"mpd-parser": "^0.16.0",
"pessimist": "^0.3.5",
"request": "^2.87.0",
"requestretry": "^5.0.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-videojs": "^3.0.0",
"doctoc": "^2.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"nock": "^13.0.11",
"not-prerelease": "^1.0.1",
"npm-merge-driver-install": "^2.0.1",
"videojs-generator-verify": "~3.0.3",
"videojs-standard": "^8.0.4"
},
"generator-videojs-plugin": {
"version": "7.3.2"
},
"browserslist": [
"defaults",
"ie 11"
],
"vjsstandard": {
"ignore": [
"dist",
"docs",
"test/dist"
]
},
"files": [
"CONTRIBUTING.md",
"docs/",
"src/",
"test/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"npm run docs:toc",
"git add"
]
}
}