oav/package.json

105 строки
2.5 KiB
JSON

{
"name": "oav",
"version": "0.4.54",
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",
"url": "https://github.com/azure/oav"
},
"description": "Validate Azure REST API Specifications",
"license": "MIT",
"dependencies": {
"@microsoft.azure/autorest-extension-base": "1.0.13",
"@types/uuid": "^3.4.3",
"@types/lodash": "^4.14.109",
"@types/request": "^2.47.1",
"@types/winston": "^2.3.9",
"azure-arm-resource": "^2.0.0-preview",
"glob": "^5.0.14",
"js-yaml": "^3.8.2",
"json-pointer": "^0.6.0",
"jsonpath": "^0.2.11",
"linq": "^3.1.0",
"lodash": "^4.17.10",
"moment": "~2.21.0",
"ms-rest": "^2.3.3",
"ms-rest-azure": "^2.5.5",
"recursive-readdir": "^2.2.1",
"request": "^2.85.0",
"swagger-parser": "^3.4.1",
"swagger-tools": "^0.10.1",
"uuid": "^3.0.1",
"vscode-jsonrpc": "^3.6.1",
"winston": "^2.4.2",
"yargs": "^6.6.0",
"yasway": "^1.0.0",
"yuml2svg": "^3.1.0"
},
"devDependencies": {
"@types/glob": "^5.0.35",
"@types/js-yaml": "^3.11.1",
"@types/json-pointer": "^1.0.30",
"@types/jsonpath": "^0.2.0",
"@types/mocha": "^2.2.46",
"@types/recursive-readdir": "^2.2.0",
"@types/should": "^8.1.30",
"@types/yargs": "^11.0.0",
"mocha": "^4.1.0",
"nyc": "^11.8.0",
"should": "5.2.0",
"ts-node": "^6.0.5",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"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/lib/**/*.js",
"dist/lib/**/*.d.ts",
"types/**/*.d.ts"
],
"types": [
"./dist/index.d.ts",
"./types/*.d.ts"
],
"nyc": {
"require": [
"ts-node/register"
],
"include": [
"lib/**/*.ts"
],
"all": true,
"reporter": [
"lcov",
"text"
],
"extension": [
".ts"
],
"exclude": [
"dist/",
"types/"
]
},
"scripts": {
"tsc": "tsc",
"tslint": "tslint ./*.ts ./lib/**/*.ts ./test/**/*.ts ./types/**/*.ts",
"test": "npm run tslint && nyc mocha ./test/**/*.ts -r ts-node/register -t 10000",
"start": "node ./dist/lib/autorestPlugin/pluginHost.js",
"prepack": "npm install && tsc && npm run tslint"
}
}