-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
117 lines (117 loc) · 2.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@azure/avocado",
"version": "0.9.1",
"description": "A validator of OpenAPI configurations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/cli.js",
"dist/*.d.ts",
"dist/*.d.ts.map",
"dist/*.js",
"dist/*.js.map",
"src/*.ts"
],
"bin": {
"avocado": "./bin/cli.js"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"scripts": {
"integration": "tsc && cd ../azure-rest-api-specs/ && node ../avocado/bin/cli.js",
"cli": "tsc && node ./bin/cli.js",
"tsc": "tsc",
"prettier": "prettier ./src/**/*.ts",
"tslint": "tslint -t verbose --project ./",
"test": "tsc && tslint -t verbose --project ./ && jest --silent --testTimeout 100000",
"standard": "standard src/**/*.ts",
"prepack": "npm install && tsc"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/dist/test/*test.js"
],
"reporters": [
"jest-junit",
"default"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 87,
"functions": 95,
"lines": 96,
"statements": 96
}
},
"coveragePathIgnorePatterns": [
"/dist/test/"
],
"coverageReporters": [
"cobertura",
"text",
"html"
]
},
"jest-junit": {
"outputDirectory": ".",
"outputName": "test-results.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/avocado.git"
},
"keywords": [
"openapi",
"validator"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/avocado/issues"
},
"homepage": "https://github.com/Azure/avocado#readme",
"dependencies": {
"@azure/openapi-markdown": "^0.9.4",
"@azure/swagger-validation-common": "^0.0.5",
"@ts-common/async-iterator": "^0.2.2",
"@ts-common/commonmark-to-markdown": "^2.0.2",
"@ts-common/fs": "^0.2.0",
"@ts-common/iterator": "^1.1.2",
"@ts-common/json": "^0.3.1",
"@ts-common/json-parser": "^0.9.0",
"@ts-common/string-map": "^0.3.0",
"commonmark": "^0.29.0",
"glob": "^7.2.0",
"js-yaml": "^3.13.1",
"jsonpath-plus": "^10.0.0",
"node-fetch": ">=2.6.1",
"node-notifier": ">=8.0.1",
"node-object-hash": "^1.4.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^24.0.15",
"@types/js-yaml": "^3.12.1",
"@types/node": "^10.14.6",
"@types/yargs": "^15.0.5",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"prettier": "^1.18.2",
"tslint": "~5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-immutable": "^6.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "3.5.2"
},
"engines": {
"node": ">=18.0.0"
}
}