-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "nvidia-gpu-monitor",
"version": "2.0.1",
"description": "Helps to monitor Nvidia GPU utilization using nvidia-smi",
"main": "index.js",
"scripts": {
"lint": "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-tests": "NODE_ENV=test mocha --opts tests/mocha.opts -R spec './tests/Unit/**/*.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/nvidia-gpu-monitor.git"
},
"keywords": [
"nvidia",
"gpu",
"monitor",
"monitoring",
"nvidia-smi",
"utilization"
],
"license": "MIT",
"engines": {
"node": ">=8.1"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.2",
"data-driven": "^1.4.0",
"deep-freeze": "^0.0.1",
"eslint": "^6.5.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.2.1",
"sinon": "^7.5.0"
},
"bugs": {
"url": "https://github.com/LCMApps/nvidia-gpu-monitor/issues"
},
"homepage": "https://github.com/LCMApps/nvidia-gpu-monitor"
}