-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "@symphony/openapi-lint",
"version": "1.0.0-automatic",
"description": "OpenAPI linter",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p ./",
"test": "npm run lint && npm run ut",
"lint": "tslint -p ./ -t codeFrame",
"ut": "mocha -r ts-node/register test/**/*.spec.ts",
"step-version": "step-version"
},
"author": "Symphony",
"license": "ISC",
"bin": {
"openapi-lint": "./dist/cli.js"
},
"devDependencies": {
"@johanblumenberg/mocha": "^1.0.13",
"@symphony/rtc-builder": "~2.0.26",
"@types/expect": "^24.3.0",
"@types/fs-extra": "^8.1.0",
"@types/js-yaml": "^3.12.3",
"@types/jsonschema": "^1.1.1",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/yargs": "^15.0.4",
"expect": "^26.0.1",
"ts-node": "^8.10.1",
"tslint": "^5.10.0",
"typescript": "^3.8.3"
},
"dependencies": {
"fs-extra": "^9.0.0",
"js-yaml": "^3.13.1",
"jsonschema": "^1.2.6",
"lodash": "^4.17.15",
"yargs": "^15.3.1"
},
"files": [
"dist/",
"schema/"
]
}