-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "swagger-coverage-cli",
"version": "1.2.0",
"description": "A Node.js CLI tool to measure test coverage of Swagger/OpenAPI specs using Postman collections.",
"main": "cli.js",
"bin": {
"swagger-coverage-cli": "cli.js"
},
"scripts": {
"test": "jest"
},
"keywords": [
"swagger",
"openapi",
"coverage",
"cli",
"postman",
"testing"
],
"author": "Alex <dreamquality337@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/dreamquality/swagger-coverage-cli.git"
},
"bugs": {
"url": "https://github.com/dreamquality/swagger-coverage-cli/issues"
},
"homepage": "https://github.com/dreamquality/swagger-coverage-cli#readme",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"ajv": "^8.17.1",
"commander": "^13.0.0",
"js-yaml": "^4.1.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"jest": "^29.7.0"
},
"engines": {
"node": ">=14"
},
"directories": {
"lib": "lib",
"test": "test"
}
}