forked from Redocly/redocly-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.5 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
{
"name": "@redocly/openapi",
"version": "1.0.0-beta.90",
"description": "",
"private": true,
"engines": {
"node": ">=15.0.0"
},
"engineStrict": true,
"scripts": {
"test": "npm run typecheck && npm run unit",
"unit": "jest ./packages --coverage --coverageReporters lcov text-summary",
"typecheck": "tsc --noEmit --skipLibCheck",
"e2e": "jest ./__tests__",
"prettier": "npx prettier --write \"**/*.{ts,js}\"",
"clean": "rm -rf packages/**/lib packages/**/node_modules packages/**/*.tsbuildinfo package-lock.json node_modules",
"watch": "tsc -b tsconfig.build.json --watch ",
"compile": "tsc -b tsconfig.build.json",
"prepare": "npm run compile",
"cli": "ts-node packages/cli/src/index.ts",
"lint": "npm run cli lint resources/pets.yaml -- --format stylish",
"bundle": "npm run cli bundle resources/pets.yaml",
"stats": "npm run cli stats resources/pets.yaml",
"split": "npm run cli split resources/pets.yaml -- --outDir output",
"preview": "npm run cli preview-docs resources/pets.yaml",
"benchmark": "node --expose-gc --noconcurrent_sweeping --predictable packages/core/src/benchmark/benchmark.js",
"webpack-bundle": "webpack --config webpack.config.ts",
"upload": "node scripts/archive-and-upload-bundle.js",
"deploy-local": "npm run compile && ENV=local npm run upload"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Redocly/openapi-cli.git"
},
"keywords": [
"linter",
"OpenAPI",
"Swagger",
"OpenAPI linter",
"Swagger linter",
"oas"
],
"contributors": [
"Sergey Dubovyk <serhii@redoc.ly> (https://redoc.ly/)",
"Roman Hotsiy <roman@redoc.ly> (https://redoc.ly/)",
"Andriy Leliv <andriy@redoc.ly> (https://redoc.ly/)"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"null-loader": "^4.0.0",
"outdent": "^0.7.1",
"prettier": "^2.1.2",
"shebang-loader": "0.0.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.2",
"ts-node": "^9.0.0",
"typescript": "4.3.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"jest": {
"clearMocks": true,
"preset": "ts-jest",
"collectCoverageFrom": [
"packages/**/*.ts",
"!packages/**/__tests__/**/*",
"!packages/cli/src/index.ts"
],
"testMatch": [
"**/__tests__/**/*.test.ts",
"**/*.test.ts"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}