-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 824 Bytes
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
{
"name": "node-bandwidth-tester",
"version": "0.0.1",
"description": "A quick NodeJS client & server for having a Rasperry Pi Zero measure bandwidth & report it to a remote server",
"main": "client.js",
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecaron/node-bandwidth-tester.git"
},
"keywords": [
"bandwidth"
],
"author": "Eric Caron <eric.caron@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecaron/node-bandwidth-tester/issues"
},
"homepage": "https://github.com/ecaron/node-bandwidth-tester#readme",
"dependencies": {
"@seald-io/nedb": "^4.0.0",
"dotenv": "^16.0.0",
"ping": "^0.4.4"
},
"devDependencies": {
"standard": "*"
},
"scripts": {
"lint": "standard"
}
}