oav/package.json

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

2016-11-09 03:38:30 +03:00
{
2017-03-16 06:19:14 +03:00
"name": "oav",
2018-09-25 23:19:56 +03:00
"version": "0.6.2",
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": {
2018-06-21 02:44:53 +03:00
"@microsoft.azure/autorest-extension-base": "1.0.13",
"@ts-common/azure-openapi-markdown": "^0.2.4",
"@ts-common/commonmark-to-markdown": "^1.1.3",
"@ts-common/iterator": "0.0.36",
"@ts-common/json": "0.0.18",
"@ts-common/json-parser": "0.2.1",
"@ts-common/property-set": "0.0.7",
"@ts-common/source-map": "0.2.7",
"@ts-common/string-map": "0.0.26",
"@ts-common/tuple": "0.0.0",
"z-schema": "^3.24.1",
"@types/lodash": "^4.14.116",
"@types/request": "^2.47.1",
"azure-arm-resource": "^2.0.0-preview",
"commonmark": "^0.28.1",
2018-05-15 01:51:32 +03:00
"glob": "^5.0.14",
"js-yaml": "^3.12.0",
2018-05-15 01:51:32 +03:00
"json-pointer": "^0.6.0",
"json-refs": "3.0.10",
"jsonpath": "^1.0.0",
2018-05-15 01:51:32 +03:00
"linq": "^3.1.0",
"lodash": "^4.17.11",
"moment": "~2.22.2",
"ms-rest": "^2.3.6",
"ms-rest-azure": "^2.5.7",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"swagger-parser": "^5.0.5",
"swagger-tools": "^0.10.4",
2018-05-15 01:51:32 +03:00
"uuid": "^3.0.1",
"vscode-jsonrpc": "^3.6.2",
"winston": "^3.0.0",
2018-05-15 01:51:32 +03:00
"yargs": "^6.6.0",
"yasway": "^1.0.13",
2018-09-11 23:35:30 +03:00
"yuml2svg": "^3.1.0"
2016-11-09 03:38:30 +03:00
},
"devDependencies": {
"@types/commonmark": "^0.27.1",
2018-05-30 01:38:27 +03:00
"@types/glob": "^5.0.35",
"@types/js-yaml": "^3.11.2",
2018-05-30 01:38:27 +03:00
"@types/json-pointer": "^1.0.30",
"@types/jsonpath": "^0.2.0",
"@types/mocha": "^5.2.5",
2018-05-30 01:38:27 +03:00
"@types/recursive-readdir": "^2.2.0",
2018-05-26 03:18:04 +03:00
"@types/should": "^8.1.30",
"@types/swagger-parser": "^4.0.2",
"@types/uuid": "^3.4.4",
"@types/yargs": "^11.1.2",
"mocha": "^5.2.0",
2018-05-31 22:15:24 +03:00
"nyc": "^11.8.0",
"should": "^5.2.0",
2018-05-31 22:15:24 +03:00
"ts-node": "^6.0.5",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"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",
"dist/lib/**/*.js",
2018-06-01 02:50:45 +03:00
"dist/lib/**/*.d.ts",
"types/**/*.d.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"
],
2018-06-05 01:36:59 +03:00
"nyc": {
"require": [
"ts-node/register"
],
2018-06-05 01:43:36 +03:00
"include": [
"lib/**/*.ts"
],
2018-06-05 01:36:59 +03:00
"all": true,
"reporter": [
"lcov",
"text"
],
"extension": [
".ts"
],
"exclude": [
2018-06-05 01:43:36 +03:00
"dist/",
"types/"
2018-06-05 01:36:59 +03:00
]
},
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 tslint && nyc mocha ./test/**/*.ts -r ts-node/register -t 10000",
2018-06-01 03:36:35 +03:00
"start": "node ./dist/lib/autorestPlugin/pluginHost.js",
"prepack": "npm install && tsc && npm run tslint",
"cli": "node dist/cli.js"
2017-04-13 07:07:58 +03:00
}
2018-05-01 22:42:02 +03:00
}