-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "swagger-coverage-cli",
"version": "8.0.2",
"description": "A Node.js CLI tool to measure test coverage of Swagger/OpenAPI specs using Postman collections or Newman run reports. Features smart endpoint mapping with intelligent status code prioritization and enhanced path matching.",
"main": "cli.js",
"files": [
"cli.js",
"lib/",
"docs/",
"readme.md",
"CHANGELOG.md",
"package.json",
"LICENSE"
],
"bin": {
"swagger-coverage-cli": "cli.js"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "node cli.js --help > /dev/null && echo 'CLI syntax check passed'",
"prepublishOnly": "npm test && npm run lint",
"postinstall": "echo 'Thank you for installing swagger-coverage-cli! Run with --help for usage info.'"
},
"keywords": [
"swagger",
"openapi",
"coverage",
"cli",
"postman",
"newman",
"testing",
"multi-api",
"microservices",
"api-testing",
"test-coverage",
"smart-mapping",
"endpoint-mapping",
"api-coverage",
"status-code",
"path-matching",
"confidence-scoring"
],
"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",
"graphql": "^16.11.0",
"js-yaml": "^4.1.0",
"protobufjs": "^7.5.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"jest": "^29.7.0"
},
"engines": {
"node": ">=14"
},
"directories": {
"lib": "lib",
"test": "test"
}
}