-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 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": "@sadiqhayatuddeen/httpinfo",
"version": "1.0.0",
"description": "A CLI application that helps you look up HTTP status codes from your terminal",
"repository": {
"type": "git",
"url": "https://github.com/devfloww/httpinfo.git"
},
"main": "index.js",
"type": "module",
"scripts": {
"test": "httpinfo",
"postuninstall": "node ./src/uninstall.js"
},
"keywords": ["cli", "app"],
"author": {
"name": "Sadiq hayatuddeen",
"email": "svdiqhayatuddeen@gmail.com",
"url": "https://devfloww.github.io/about"
},
"bin": {
"httpinfo": "./index.js"
},
"license": "MIT",
"dependencies": {
"@types/node": "^18.0.6",
"axios": "^1.7.8",
"chalk": "^5.3.0",
"chalk-animation": "^2.0.3",
"figlet": "^1.8.0",
"yargs": "^17.7.2"
}
}