-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
141 lines (141 loc) · 4.54 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "oav",
"version": "3.5.1",
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",
"url": "https://github.com/azure/oav"
},
"description": "Validate Azure REST API Specifications",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "10.0.3",
"@autorest/schemas": "^1.3.4",
"@azure-tools/openapi-tools-common": "^1.2.2",
"@azure/core-http": "^3.0.1",
"@azure/core-util": "~1.7.0",
"@azure/logger": "~1.0.4",
"@azure/ms-rest-js": "^2.7.0",
"@azure/openapi-markdown": "^0.9.4",
"@ts-common/commonmark-to-markdown": "^2.0.2",
"ajv": "^6.12.6",
"commonmark": "^0.29.3",
"deepdash": "^5.3.2",
"difflib": "^0.2.4",
"fast-json-stable-stringify": "^2.1.0",
"fs-extra": "^10.1.0",
"glob": "^7.2.3",
"humanize-duration": "^3.27.2",
"inversify": "^5.1.1",
"js-yaml": "^4.1.0",
"json-merge-patch": "^1.0.2",
"json-pointer": "^0.6.2",
"json-schema-traverse": "^0.4.1",
"jsonpath-plus": "^10.0.0",
"junit-report-builder": "^3.0.0",
"lodash": "^4.17.21",
"md5-file": "^5.0.0",
"mkdirp": "^1.0.4",
"moment": "^2.29.3",
"mustache": "^4.2.0",
"newman": "^6.0.0",
"path-to-regexp": "^6.2.1",
"postman-collection": "^4.1.7",
"reflect-metadata": "^0.1.13",
"toposort": "^2.0.2",
"uuid": "^3.4.0",
"winston": "^3.3.4",
"yargs": "^15.4.1",
"z-schema": "^5.0.3"
},
"devDependencies": {
"@types/commonmark": "^0.27.3",
"@types/difflib": "^0.2.0",
"@types/fs-extra": "^9.0.11",
"@types/glob": "^7.1.1",
"@types/heap": "^0.2.29",
"@types/humanize-duration": "^3.25.0",
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/json-merge-patch": "^0.0.5",
"@types/json-pointer": "^1.0.30",
"@types/json-schema-traverse": "^0.4.0",
"@types/lodash": "4.14.182",
"@types/md5-file": "^4.0.0",
"@types/mkdirp": "^1.0.1",
"@types/mustache": "^4.1.2",
"@types/newman": "^5.3.0",
"@types/node": "^10.12.18",
"@types/postman-collection": "^3.5.5",
"@types/swagger-parser": "^4.0.3",
"@types/toposort": "^2.0.3",
"@types/uuid": "^3.4.4",
"@types/yargs": "^11.1.2",
"@typescript-eslint/eslint-plugin": "~5.27.1",
"@typescript-eslint/parser": "~5.27.1",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"handlebars": "^4.7.7",
"jest": "^26.6.3",
"jest-junit": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"ts-jest": "~26.5.6",
"typescript": "^3.9.10"
},
"homepage": "https://github.com/azure/oav",
"repository": {
"type": "git",
"url": "https://github.com/azure/oav.git"
},
"bugs": {
"url": "http://github.com/azure/oav/issues"
},
"main": "./dist/index.js",
"bin": {
"oav": "./dist/cli.js"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.js.map",
"dist/*.d.ts.map",
"dist/lib/**/*.js",
"dist/lib/**/*.d.ts",
"dist/lib/**/*.js.map",
"dist/lib/**/*.d.ts.map",
"dist/lib/**/*.handlebars",
"dist/lib/**/*.mustache",
"dist/lib/swaggerValidator/*.json",
"documentation/error-definitions.json",
"types/**/*.d.ts",
"*.ts",
"lib/**/*.ts"
],
"types": "./dist/index.d.ts",
"scripts": {
"copy-templates": "copyfiles -V -E -u 1 lib/apiScenario/templates/* lib/templates/base*.mustache dist/lib",
"build": "run-p tsc lint copy-templates",
"tsc": "tsc",
"lint": "eslint ./lib/**/*.ts ./test/**/*.ts ./*.ts",
"lint-fix": "eslint ./lib/**/*.ts ./test/**/*.ts ./*.ts --fix",
"test": "npm run tsc && jest --ci --reporters=default --reporters=jest-junit",
"fast-test": "jest --ci --reporters=default --reporters=jest-junit --config ./jest.config.js ",
"slow-test": "node --max-old-space-size=10192 ./node_modules/.bin/jest -u --runInBand --ci --reporters=default --reporters=jest-junit --config ./regression/jest.regression.config.js ",
"slow-test-sample": "node --max-old-space-size=10192 ./node_modules/.bin/jest -u --runInBand --ci --reporters=default --reporters=jest-junit --config ./regression/jest.regression-sample.config.js ",
"jest": "jest",
"start": "node ./dist/lib/autorestPlugin/pluginHost.js",
"prepack": "npm run build",
"cli": "npm run tsc && node dist/cli.js",
"li": "npm install @ts-common/local-install --no-save && local-install"
},
"engines": {
"node": ">=18.0.0"
},
"jest-junit": {
"output": "test-results.xml"
}
}