-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 998 Bytes
/
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
{
"name": "internets-down",
"version": "1.0.1",
"description": "Check the webs, does it work?",
"scripts": {
"test": "jest",
"build": "rm -Rf build && tsc -p ."
},
"keywords": [
"cli",
"console",
"network"
],
"author": {
"name": "Carson Reinke",
"email": "[email protected]",
"url": "https://reinke.co/"
},
"license": "MIT",
"bin": "./bin/internets-down",
"repository": {
"type": "git",
"url": "git+https://github.com/carsonreinke/internets-down.git"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"default-gateway": "^6.0.1",
"ip-num": "^1.4.1",
"ora": "^4.0.4",
"pingman": "^1.0.6",
"read-package-json": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.13",
"jest": "^26.0.1",
"memory-streams": "^0.1.3",
"ts-jest": "^26.1.0",
"typescript": "^4.2.0"
},
"engines": {
"node": ">= 10.14.2"
}
}