oav/package.json

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

2016-11-09 03:38:30 +03:00
{
2017-03-16 06:19:14 +03:00
"name": "oav",
2018-05-31 02:18:48 +03:00
"version": "0.4.40",
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-05-15 01:51:32 +03:00
"@microsoft.azure/autorest-extension-base": "^1.0.13",
"azure-arm-resource": "^2.0.0-preview",
2018-05-15 01:51:32 +03:00
"glob": "^5.0.14",
"js-yaml": "^3.8.2",
2018-05-15 01:51:32 +03:00
"json-pointer": "^0.6.0",
"jsonpath": "^0.2.11",
"linq": "^3.1.0",
"lodash": "^4.17.10",
2018-03-09 01:29:49 +03:00
"moment": "~2.21.0",
2018-05-15 01:51:32 +03:00
"ms-rest": "^2.3.3",
"ms-rest-azure": "^2.5.5",
"recursive-readdir": "^2.2.1",
2018-05-15 01:51:32 +03:00
"request": "^2.85.0",
"swagger-parser": "^3.4.1",
"swagger-tools": "^0.10.1",
2018-05-15 01:51:32 +03:00
"sway": "github:amarzavery/sway#validation",
"uuid": "^3.0.1",
"vscode-jsonrpc": "^3.6.1",
"winston": "^2.4.2",
"yargs": "^6.6.0",
2018-06-01 03:12:24 +03:00
"yuml2svg": "^3.1.0",
"@types/winston": "^2.3.9"
2016-11-09 03:38:30 +03:00
},
"devDependencies": {
2018-05-30 01:38:27 +03:00
"@types/glob": "^5.0.35",
"@types/js-yaml": "^3.11.1",
"@types/json-pointer": "^1.0.30",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.109",
2018-05-26 03:18:04 +03:00
"@types/mocha": "^2.2.46",
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",
2018-05-30 01:38:27 +03:00
"@types/yargs": "^11.0.0",
"mocha": "^4.1.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",
2018-06-02 03:26:20 +03:00
"tslint": "^5.10.0",
2018-05-26 03:18:04 +03:00
"typescript": "^2.8.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
],
"types": "./dist/index.d.ts",
2017-04-13 07:07:58 +03:00
"scripts": {
2018-06-04 16:16:47 +03:00
"tsc": "tsc",
2018-06-04 23:13:32 +03:00
"tslint": "tslint ./*.ts ./lib/**/*.ts ./test/**/*.ts ./types/**/*.ts",
2018-06-04 23:10:57 +03:00
"test": "npm run tslint && nyc --extension .ts --reporter lcov --reporter text mocha ./test/**/*.ts -r ts-node/register -t 10000",
2018-06-01 03:36:35 +03:00
"start": "node ./dist/lib/autorestPlugin/pluginHost.js",
2018-06-04 23:10:57 +03:00
"prepack": "npm install && tsc && npm run tslint"
2017-04-13 07:07:58 +03:00
}
2018-05-01 22:42:02 +03:00
}