-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 924 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 924 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
34
35
36
37
38
39
40
{
"name": "@m-lab/ndt7",
"version": "0.1.4",
"description": "NDT7 client for measuring networks",
"main": "src/ndt7.js",
"scripts": {
"test": "mocha src/test",
"coverage": "nyc --reporter=lcovonly --file=coverage.cov --reporter=text npm run test",
"lint": "eslint --ext .js src/",
"document": "jsdoc2md --files=src/ndt7.js --template README.template.md > README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/m-lab/ndt7-js"
},
"keywords": [
"network",
"measurement",
"bbr",
"ndt",
"ndt7"
],
"author": "Measurement Lab",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"devDependencies": {
"chai": "^6.2.2",
"eslint": "^9.39.2",
"eslint-config-google": "^0.14.0",
"express": "^5.2.1",
"jsdoc-to-markdown": "^9.1.3",
"mocha": "^11.7.5",
"nyc": "^17.1.0"
},
"files": [
"src/**/*"
]
}