forked from LCMApps/video-quality-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.69 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
{
"name": "video-quality-tools",
"version": "2.0.0",
"description": "Set of tools to evaluate video stream quality.",
"main": "index.js",
"engines": {
"node": ">=8.1"
},
"directories": {
"test": "tests"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./",
"tests": "yarn run unit-tests",
"test:coverage": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --print both -- --opts tests/mocha.opts -R spec ./tests/Unit",
"unit-tests": "NODE_ENV=test ./node_modules/.bin/mocha --opts tests/mocha.opts -R spec './tests/Unit/**/*.js'",
"func-tests": "NODE_ENV=test ./node_modules/.bin/mocha --opts tests/mocha.opts --timeout 30000 -R spec './tests/Functional/**/*.js'",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --opts tests/mocha.opts -R spec ./tests/Unit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"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.1.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"data-driven": "^1.3.0",
"eslint": "^6.5.1",
"get-port": "^5.0.0",
"istanbul": "v1.1.0-alpha.1",
"mocha": "^6.2.1",
"proxyquire": "^2.1.0",
"sinon": "^7.5.0"
},
"dependencies": {
"app-module-path": "^2.2.0",
"lodash": "^4.17.4"
},
"bugs": {
"url": "https://github.com/LCMApps/video-quality-tools/issues"
},
"homepage": "https://github.com/LCMApps/video-quality-tools"
}