-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.8.4](v1.8.3...v1.8.4) (2024-01-15) ### Bug Fixes * update post-release actions ([2eee786](2eee786))
- Loading branch information
Showing
2 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## [1.8.4](https://github.com/ExpediaGroup/spec-transformer/compare/v1.8.3...v1.8.4) (2024-01-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* update post-release actions ([2eee786](https://github.com/ExpediaGroup/spec-transformer/commit/2eee7863bc65a448be22be83c9f23d5d227928e1)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"name": "@expediagroup/spec-transformer", | ||
"version": "1.8.4", | ||
"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", | ||
"start": "ts-node index.ts", | ||
"test": "jest", | ||
"semantic-release": "semantic-release" | ||
}, | ||
"keywords": [ | ||
"openapi", | ||
"api", | ||
"specifications", | ||
"transformer", | ||
"specs", | ||
"mapping" | ||
], | ||
"author": "Expedia Group <[email protected]>", | ||
"contributors": [ | ||
"'Mohammad Noor' AbuKhleif <[email protected]> (https://github.com/mohnoor94)", | ||
"Osama Salman <[email protected]> (https://github.com/osama-salman99)" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"commander": "11.1.0", | ||
"js-yaml": "4.1.0", | ||
"openapi-to-postmanv2": "4.18.0", | ||
"openapi3-ts": "4.2.1" | ||
}, | ||
"devDependencies": { | ||
"@semantic-release/changelog": "6.0.3", | ||
"@semantic-release/commit-analyzer": "11.1.0", | ||
"@semantic-release/exec": "6.0.3", | ||
"@semantic-release/git": "10.0.1", | ||
"@semantic-release/github": "9.2.6", | ||
"@semantic-release/npm": "11.0.2", | ||
"@semantic-release/release-notes-generator": "12.1.0", | ||
"@types/jest": "29.5.11", | ||
"@types/js-yaml": "4.0.9", | ||
"@types/node": "20.11.0", | ||
"@types/openapi-to-postmanv2": "3.2.4", | ||
"conventional-changelog-conventionalcommits": "7.0.2", | ||
"jest": "29.7.0", | ||
"prettier": "3.1.1", | ||
"semantic-release": "22.0.12", | ||
"ts-jest": "29.1.1", | ||
"ts-node": "10.9.2", | ||
"typescript": "5.3.3" | ||
}, | ||
"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" | ||
} |