oav/package.json

117 строки
3.6 KiB
JSON
Исходник Обычный вид История

2016-11-09 03:38:30 +03:00
{
2017-03-16 06:19:14 +03:00
"name": "oav",
"version": "0.18.5",
2016-11-09 03:38:30 +03:00
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",
"url": "https://github.com/azure/oav"
2016-11-09 03:38:30 +03:00
},
"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.1",
"@ts-common/json": "^0.3.0",
"@ts-common/json-parser": "^0.7.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",
"commonmark": "^0.29.0",
"glob": "^5.0.15",
"globby": "^9.2.0",
"js-yaml": "^3.13.1",
2018-05-15 01:51:32 +03:00
"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",
2019-01-15 21:16:13 +03:00
"uuid": "^3.3.2",
"vscode-jsonrpc": "^3.6.2",
"winston": "^3.2.1",
2018-05-15 01:51:32 +03:00
"yargs": "^6.6.0",
"yasway": "^1.8.1",
"yuml2svg": "^4.2.1",
"z-schema": "^4.1.0"
2016-11-09 03:38:30 +03:00
},
"devDependencies": {
"@types/commonmark": "^0.27.3",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.11",
"@types/js-yaml": "^3.12.1",
2018-05-30 01:38:27 +03:00
"@types/json-pointer": "^1.0.30",
"@types/jsonpath": "^0.2.0",
"@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",
"ts-jest": "^24.0.2",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"prettier": "^1.18.2",
2019-01-15 21:16:13 +03:00
"should": "^13.2.3",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.4.5"
},
"homepage": "https://github.com/azure/oav",
2016-11-09 03:38:30 +03:00
"repository": {
"type": "git",
"url": "https://github.com/azure/oav.git"
2016-11-09 03:38:30 +03:00
},
"bugs": {
"url": "http://github.com/azure/oav/issues"
2016-11-09 03:38:30 +03:00
},
2018-06-01 01:01:32 +03:00
"main": "./dist/index.js",
2017-08-03 02:59:33 +03:00
"bin": {
2018-06-01 01:01:32 +03:00
"oav": "./dist/cli.js"
2017-08-03 02:59:33 +03:00
},
2018-06-01 01:01:32 +03:00
"files": [
"dist/*.js",
"dist/*.d.ts",
2018-09-26 03:18:31 +03:00
"dist/*.js.map",
2018-09-27 00:20:05 +03:00
"dist/*.d.ts.map",
2018-06-01 01:01:32 +03:00
"dist/lib/**/*.js",
2018-06-01 02:50:45 +03:00
"dist/lib/**/*.d.ts",
2018-09-26 03:18:31 +03:00
"dist/lib/**/*.js.map",
2018-09-27 00:20:05 +03:00
"dist/lib/**/*.d.ts.map",
2018-09-26 03:18:31 +03:00
"types/**/*.d.ts",
"*.ts",
"lib/**/*.ts"
2018-06-01 01:01:32 +03:00
],
2018-06-18 23:10:27 +03:00
"types": [
"./dist/index.d.ts",
"./types/*.d.ts"
],
2017-04-13 07:07:58 +03:00
"scripts": {
2018-06-04 16:16:47 +03:00
"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",
2018-06-01 03:36:35 +03:00
"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"
2017-04-13 07:07:58 +03:00
}
2019-03-08 03:42:07 +03:00
}