-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.14 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "mlab-speed-test",
"version": "1.0.0",
"description": "Test your download and upload speed using speed.measurementlab.net",
"author": {
"name": "Lorenzo Pichilli",
"email": "[email protected]",
"url": "https://github.com/pichillilorenzo"
},
"homepage": "https://github.com/pichillilorenzo/mlab-speed-test#readme",
"funding": {
"type": "individual",
"url": "https://www.paypal.me/LorenzoPichilli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pichillilorenzo/mlab-speed-test.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/pichillilorenzo/mlab-speed-test/issues"
},
"keywords": [
"cli-app",
"cli",
"speed",
"test",
"tester",
"down",
"download",
"upload",
"up",
"speed-test",
"speedtest",
"connection",
"internet",
"bandwidth",
"measure",
"check",
"mbps",
"mlab",
"m-lab",
"mlab-speed-test",
"ndt7"
],
"main": "lib/index.js",
"bin": {
"mlab-speed-test": "lib/cli.js"
},
"files": [
"lib",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"start": "npm run build && lib/cli.js -ap",
"start:json": "npm run build && lib/cli.js -ap --json",
"build": "tsc --build",
"build:doc": "typedoc --out docs src/index.ts",
"clean": "tsc --build --clean",
"watch": "tsc --watch",
"postbuild": "minimize-js ./lib",
"test": "rimraf ./coverage && jest --coverage",
"coverage": "coveralls < coverage/lcov.info",
"prepare": "npm run build && npm run build:doc && npm run test && npm run coverage"
},
"dependencies": {
"@m-lab/ndt7": "^0.0.6",
"commander": "^8.3.0",
"ink": "^3.2.0",
"ink-link": "^2.0.0",
"ink-spinner": "^4.0.3",
"react": "^17.0.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"@types/node": "^16.11.11",
"@types/react": "^18.0.21",
"coveralls": "^3.1.1",
"jest": "^29.1.1",
"minimize-js": "^1.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.5.2"
}
}