117 строки
3.6 KiB
JSON
117 строки
3.6 KiB
JSON
{
|
|
"name": "oav",
|
|
"version": "0.19.3",
|
|
"author": {
|
|
"name": "Microsoft Corporation",
|
|
"email": "azsdkteam@microsoft.com",
|
|
"url": "https://github.com/azure/oav"
|
|
},
|
|
"description": "Validate Azure REST API Specifications",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@azure/openapi-markdown": "^0.9.0",
|
|
"@microsoft.azure/autorest-extension-base": "1.0.13",
|
|
"@ts-common/commonmark-to-markdown": "^1.2.0",
|
|
"@ts-common/iterator": "^0.3.6",
|
|
"@ts-common/json": "^0.3.1",
|
|
"@ts-common/json-parser": "^0.8.0",
|
|
"@ts-common/property-set": "^0.1.0",
|
|
"@ts-common/source-map": "^0.5.0",
|
|
"@ts-common/string-map": "^0.3.0",
|
|
"@ts-common/virtual-fs": "^0.2.0",
|
|
"@types/jsonpath": "^0.2.0",
|
|
"commonmark": "^0.29.0",
|
|
"glob": "^5.0.15",
|
|
"globby": "^9.2.0",
|
|
"js-yaml": "^3.13.1",
|
|
"json-pointer": "^0.6.0",
|
|
"json-refs": "^3.0.13",
|
|
"jsonpath": "^1.0.1",
|
|
"linq": "^3.2.0",
|
|
"lodash": "^4.17.11",
|
|
"md5-file": "^4.0.0",
|
|
"moment": "^2.24.0",
|
|
"ms-rest": "^2.5.0",
|
|
"swagger-parser": "^6.0.5",
|
|
"uuid": "^3.3.2",
|
|
"vscode-jsonrpc": "^3.6.2",
|
|
"winston": "^3.2.1",
|
|
"yargs": "^6.6.0",
|
|
"yasway": "^1.8.3",
|
|
"yuml2svg": "^4.2.1",
|
|
"z-schema": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/commonmark": "^0.27.3",
|
|
"@types/glob": "^7.1.1",
|
|
"@types/jest": "^24.0.11",
|
|
"@types/js-yaml": "^3.12.1",
|
|
"@types/json-pointer": "^1.0.30",
|
|
"@types/lodash": "4.14.123",
|
|
"@types/md5-file": "^4.0.0",
|
|
"@types/node": "^10.12.18",
|
|
"@types/request": "^2.48.1",
|
|
"@types/swagger-parser": "^4.0.3",
|
|
"@types/uuid": "^3.4.4",
|
|
"@types/yargs": "^11.1.2",
|
|
"jest": "^24.7.1",
|
|
"jest-junit": "^6.3.0",
|
|
"prettier": "^1.18.2",
|
|
"should": "^13.2.3",
|
|
"ts-jest": "^24.0.2",
|
|
"tslint": "^5.17.0",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-plugin-prettier": "^2.0.1",
|
|
"typescript": "^3.5.3"
|
|
},
|
|
"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",
|
|
"types/**/*.d.ts",
|
|
"*.ts",
|
|
"lib/**/*.ts"
|
|
],
|
|
"types": [
|
|
"./dist/index.d.ts",
|
|
"./types/*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"tsc": "tsc",
|
|
"tslint": "tslint --project tsconfig.json ./*.ts ./lib/**/*.ts ./test/**/*.ts ./types/**/*.ts",
|
|
"test": "npm run tsc && npm run --silent tslint && 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",
|
|
"tslint-check": "tslint-config-prettier-check ./tslint.json",
|
|
"prepack": "npm install && tsc && npm run tslint",
|
|
"cli": "node dist/cli.js",
|
|
"li": "npm install @ts-common/local-install --no-save && local-install"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.11.0"
|
|
},
|
|
"jest-junit": {
|
|
"output": "test-results.xml"
|
|
}
|
|
}
|