-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
59
60
61
{
"name": "network-quality-monitor",
"version": "0.3.4",
"description": "Tools for long-term monitoring of network quality.",
"main": "ping-monitor-cli.js",
"scripts": {
"start": "node ping-monitor-cli.js",
"test": "mocha",
"format": "npx prettier --write .",
"type-check": "npx tsc -p jsconfig.json --noEmit",
"publish": "npm publish"
},
"bin": {
"http-monitor": "bin/http-monitor.js",
"ping-monitor-server": "bin/ping-monitor-server.js",
"ping-monitor": "bin/ping-monitor.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinofsakh/network-quality-monitor.git"
},
"keywords": [
"ping",
"network",
"monitor",
"logger"
],
"author": "Sergey Panpurin",
"license": "MIT",
"bugs": {
"url": "https://github.com/edwinofsakh/network-quality-monitor/issues"
},
"homepage": "https://github.com/edwinofsakh/network-quality-monitor#readme",
"dependencies": {
"asciichart": "^1.5.25",
"bufferutil": "^4.0.8",
"csv-write-stream": "^2.0.0",
"debug": "^4.3.6",
"express": "^4.19.2",
"log-update": "^4.0.0",
"meow": "^8.1.2",
"net-ping": "^1.2.4",
"utf-8-validate": "^5.0.10",
"ws": "^7.5.10"
},
"devDependencies": {
"@types/asciichart": "^1.5.8",
"@types/chai": "^4.3.17",
"@types/csv-write-stream": "^2.0.3",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"@types/sinon": "^17.0.3",
"@types/ws": "^8.5.12",
"chai": "^4.5.0",
"mocha": "^10.7.3",
"sinon": "^9.2.4",
"typescript": "^5.5.4"
}
}