-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 853 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
41
42
43
44
{
"name": "@ran4om/vibe-check",
"version": "1.0.0",
"description": "Give any API a personality report. One command, one URL, one vibe.",
"type": "module",
"bin": {
"vibe-check": "bin/index.js"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"start": "node bin/index.js",
"dev": "node bin/index.js",
"test": "node bin/index.js https://httpbin.org/get"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"api",
"cli",
"testing",
"devtools",
"vibe",
"personality",
"http",
"benchmark"
],
"author": "ran4om",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ran4om/vibe-check"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"ora": "^9.3.0"
}
}