-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.37 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
{
"name": "srv-status",
"version": "0.8.0",
"description": "Simple Self-Containable Status-Messager. Creates a JSON-File",
"main": "index.js",
"scripts": {
"build": "nexe -i check.js -t linux-x64 -o bin/check --build --resource \"./checks/**/*.js\" && nexe -i server.js -t linux-x64 -o bin/server --build && nexe -i action.js -t linux-x64 -o bin/action --build",
"test": "mocha tests/*.test.js",
"test-coverage": "nyc --reporter=html --reporter=text mocha -- tests/*.test.js",
"test-graphics": "nyc --reporter=html --reporter=text mocha -R mochawesome -- tests/*.test.js",
"test-mutation": "stryker run"
},
"author": "Dominik Sigmund <[email protected]> (https://webdad.eu)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/WebDaD/srv_status"
},
"devDependencies": {
"mocha": "^5.2.0",
"mochawesome": "^3.1.1",
"nexe": "^2.0.0-rc.34",
"nyc": "^13.1.0",
"stryker": "^0.34.0",
"stryker-api": "^0.23.0",
"stryker-html-reporter": "^0.17.0",
"stryker-javascript-mutator": "^0.13.0",
"stryker-mocha-framework": "^0.14.0",
"stryker-mocha-runner": "^0.16.0"
},
"dependencies": {
"bytes": "^3.0.0",
"diskusage": "^1.0.0",
"find-free-port-sync": "^1.0.0",
"lib-log": "^1.0.0",
"libxmljs": "^0.19.5",
"moment": "^2.24.0",
"sync-request": "^6.0.0"
}
}