-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
{
"name": "@superfaceai/openapi-linter",
"version": "0.1.0",
"description": "OpenAPI validation CLI utility",
"main": "dist/index.js",
"author": "Superface",
"license": "MIT",
"repository": "github:superfaceai/openapi-linter",
"engines": {
"node": "^12.20 || >= 14.13"
},
"bin": {
"openapi-linter": "bin/run",
"oal": "bin/run"
},
"files": [
"bin/",
"dist/"
],
"scripts": {
"test": "jest",
"test:clean": "jest --clear-cache && yarn test",
"build": "tsc -p tsconfig.release.json --outDir dist",
"lint": "eslint src/",
"lint:fix": "yarn lint --fix",
"format": "prettier -c src/",
"format:fix": "prettier --write src/",
"prepush": "yarn build && yarn test && yarn lint && yarn format"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^29.0.1",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^29.0.3",
"oclif": "^3",
"prettier": "2.3.2",
"ts-jest": "^29.0.0",
"ts-node": "^10.2.1",
"typescript": "4.3.5"
},
"dependencies": {
"@oclif/core": "^1.13.10",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"@stoplight/spectral-core": "^1.14.1",
"@stoplight/spectral-formats": "^1.2.0",
"@stoplight/spectral-parsers": "^1.0.2",
"@stoplight/spectral-ruleset-bundler": "^1.3.1",
"@types/js-yaml": "^4.0.5",
"@types/node-fetch": "^2.6.2",
"chalk": "^4.1.0",
"cross-fetch": "^3.1.4",
"openapi-types": "^7.0.0"
},
"oclif": {
"bin": "openapi-linter",
"dirname": "openapi-linter",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
}
}