-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 831 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 831 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
{
"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",
"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": {
"async": "^2.0.1",
"dotenv": "^2.0.0",
"jjg-ping": "^1.0.1",
"nedb": "^1.8.0",
"request": "^2.75.0"
},
"devDependencies": {
"semistandard": "*"
},
"scripts": {
"lint": "semistandard"
}
}