-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "jamy",
"version": "0.3.0",
"description": "Jamy is a streaming Audio player for Node.Js aiming to support MSE compatible sources",
"main": "lib/Jamy.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"cover": "codecov",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [
"webm",
"player",
"stream",
"ebml"
],
"author": "TinyMan <raph.a.uzan@gmail.com>",
"license": "MIT",
"dependencies": {
"debug": "^4.0.0",
"ebml": "^2.2.3",
"fluent-ffmpeg": "^2.1.2",
"media-type": "^0.3.1",
"promise-queue": "^2.2.3",
"request": "^2.84.0",
"request-promise-native": "^1.0.5",
"timed-stream": "^1.0.0",
"snyk": "^1.685.0"
},
"devDependencies": {
"@types/node": "^14.0.1",
"chai": "^4.0.2",
"codecov": "^3.1.0",
"command-exists": "^1.2.8",
"eslint": "^6.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^7.0.1",
"mockery": "^2.0.0",
"rewire": "^5.0.0"
},
"types": "index.d.ts",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinyMan/node-jamy.git"
},
"bugs": {
"url": "https://github.com/TinyMan/node-jamy/issues"
},
"homepage": "https://github.com/TinyMan/node-jamy#readme",
"snyk": true
}