-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.59 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
{
"name": "@expediagroup/spec-transformer",
"version": "1.12.0",
"description": "API Spec Transformer",
"repository": {
"type": "git",
"url": "https://github.com/ExpediaGroup/spec-transformer.git"
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"lib": "index.js",
"cli": "cli.js"
},
"scripts": {
"add-headers": "scripts/add-headers.sh",
"build": "rm -rf dist && npx tsc --pretty && rm -rf dist/test && cp package.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp CONTRIBUTING.md dist/CONTRIBUTING.md && cp .releaserc.json dist/.releaserc.json",
"start": "ts-node index.ts",
"test": "jest",
"semantic-release": "semantic-release"
},
"keywords": [
"openapi",
"api",
"specifications",
"transformer",
"specs",
"mapping"
],
"author": "Expedia Group <oss@expediagroup.com>",
"contributors": [
"'Mohammad Noor' AbuKhleif <moh.noor94@gmail.com> (https://github.com/mohnoor94)",
"Osama Salman <osama.salman99@gmail.com> (https://github.com/osama-salman99)"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"commander": "12.1.0",
"js-yaml": "4.1.0",
"openapi-to-postmanv2": "4.24.0",
"openapi3-ts": "4.4.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.2",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "22.10.2",
"@types/openapi-to-postmanv2": "3.2.4",
"conventional-changelog-conventionalcommits": "8.0.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"json",
"text",
"lcov",
"clover",
"json-summary"
],
"testMatch": [
"**/test/**/*.test.ts"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90
}
}
},
"bugs": {
"url": "https://github.com/ExpediaGroup/spec-transformer/issues"
},
"homepage": "https://github.com/ExpediaGroup/spec-transformer#readme"
}