-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "video-quality-tools",
"version": "3.0.1",
"description": "Set of tools to evaluate video stream quality.",
"main": "index.js",
"engines": {
"node": ">=8.1"
},
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint .",
"test": "yarn test:unit",
"test:unit": "mocha --opts tests/mocha.opts -R spec './tests/Unit/**/*.js'",
"test:func": "mocha --opts tests/mocha.opts -R spec './tests/Functional/**/*.js' --timeout 30000",
"test:coverage": "nyc --reporter=text --reporter=text-summary mocha --opts tests/mocha.opts -R spec './tests/Unit/**/*.js'",
"coveralls": "nyc --reporter=text-lcov mocha --opts tests/mocha.opts -R spec './tests/Unit/**/*.js' && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/LCMApps/video-quality-tools.git"
},
"keywords": [
"ffmpeg",
"ffprobe",
"monitor",
"livestream",
"live",
"rtmp",
"hls",
"dash",
"monitoring"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"data-driven": "^1.4.0",
"eslint": "^6.8.0",
"get-port": "^5.0.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0"
},
"dependencies": {
"app-module-path": "^2.2.0",
"lodash": "^4.17.21"
},
"bugs": {
"url": "https://github.com/LCMApps/video-quality-tools/issues"
},
"homepage": "https://github.com/LCMApps/video-quality-tools"
}