-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "@bandwidth/oas-linter-cli",
"version": "0.0.0",
"description": "Bandwidth CLI Linter for OAS Files",
"main": "./build/cli.js",
"scripts": {
"build": "npx tsc --project tsconfig.build.json && npm run copy-files",
"copy-files": "cp -R ./src/static/ ./build/static",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bandwidth/oas-linter-cli.git"
},
"author": "Bandwidth",
"license": "ISC",
"bin": {
"bw-oas-linter": "./build/cli.js"
},
"bugs": {
"url": "https://github.com/Bandwidth/oas-linter-cli/issues"
},
"homepage": "https://github.com/Bandwidth/oas-linter-cli#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@types/yargs": "^17.0.10",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"@stoplight/spectral-core": "^1.12.3",
"@stoplight/spectral-ruleset-bundler": "^1.3.0",
"@stoplight/spectral-runtime": "^1.1.2",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"tmp": "^0.2.2",
"yargs": "^17.7.2"
}
}