-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
75
76
77
{
"name": "@azure/avocado",
"version": "0.11.0",
"description": "A validator of OpenAPI configurations",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/cli.js",
"dist/*.d.ts",
"dist/*.d.ts.map",
"dist/*.js",
"dist/*.js.map",
"src/*.ts"
],
"bin": {
"avocado": "./bin/cli.js"
},
"scripts": {
"build": "tsc --build --verbose",
"format": "prettier \"./src/**/*.ts\" --write",
"format:check": "prettier \"./src/**/*.ts\" --check",
"format:check:ci": "prettier \"./src/**/*.ts\" --check --log-level debug",
"lint": "cross-env DEBUG=eslint:eslint eslint",
"prepack": "npm install && tsc",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/avocado.git"
},
"keywords": [
"openapi",
"validator"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/avocado/issues"
},
"homepage": "https://github.com/Azure/avocado#readme",
"dependencies": {
"@azure/openapi-markdown": "0.9.4",
"@azure/swagger-validation-common": "0.1.2",
"@ts-common/async-iterator": "^1.1.0",
"@ts-common/commonmark-to-markdown": "^2.0.2",
"@ts-common/fs": "^1.1.0",
"@ts-common/iterator": "^1.1.2",
"@ts-common/json": "^1.1.0",
"@ts-common/json-parser": "^1.1.0",
"@ts-common/string-map": "^1.1.1",
"commonmark": "0.31.2",
"glob": "^13.0.0",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^10.0.0",
"node-object-hash": "^3.1.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.15",
"cross-env": "^10.1.0",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20.19.0"
}
}