-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
48
49
{
"name": "@quentin.rodic/opentest",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"setup": "npm run build && npm link"
},
"bin": {
"opentest": "./bin/opentest"
},
"keywords": [
"openapi",
"test",
"cli"
],
"author": "Quentin RODIC",
"license": "ISC",
"description": "OpenAPI test cli",
"dependencies": {
"@openapi-contrib/openapi-schema-to-json-schema": "^5.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"csv-writer": "^1.6.0",
"figlet": "^1.7.0",
"js-yaml": "^4.1.0",
"openapi-types": "^12.1.3",
"yaml": "^2.5.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/ajv": "^0.0.5",
"@types/eslint__js": "^8.42.3",
"@types/eslint-plugin-security": "^3.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}