-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.02 KB
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
{
"name": "bluecat",
"version": "2.0.0",
"author": "Chaoyi Chen <ccy.chenchaoyi@gmail.com>",
"description": "Library for building RESTful API HTTP requests, best for generic RESTful API Test Framework",
"repository": {
"type": "git",
"url": "https://github.com/chenchaoyi/bluecat"
},
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"bluecat": "./bin/bluecat.bin.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"testing",
"api",
"REST",
"openapi",
"swagger",
"bdd",
"bluecat"
],
"files": [
"bin",
"lib",
"index.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"dependencies": {
"columnify": "^1.6.0",
"inquirer": "^9.3.7",
"tough-cookie": "^5.0.0",
"undici": "^6.21.0",
"yargs": "^17.7.2"
},
"scripts": {
"test": "mocha test/",
"lint": "eslint lib test"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"chai": "^4.5.0",
"eslint": "^9.18.0",
"mocha": "^10.8.2"
}
}