Skip to content

Commit

Permalink
chore(release): 1.8.0 [skip ci]
Browse files Browse the repository at this point in the history
## [1.8.0](v1.7.2...v1.8.0) (2024-01-14)

### Features

* dummy update ([3ff71bf](3ff71bf))

### Bug Fixes

* deleted invalid files ([2aa2ec1](2aa2ec1))
* fix release issue ([#174](#174)) ([df44755](df44755))
* fix release issue ([#175](#175)) ([767b1b5](767b1b5))
* fix release issues ([#172](#172)) ([036b3d0](036b3d0))
* fix release issues ([#173](#173)) ([3236c11](3236c11))
* update git info ([b26aa6a](b26aa6a))
  • Loading branch information
eg-oss-ci committed Jan 14, 2024
1 parent 3ff71bf commit 95c242a
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 0 deletions.
16 changes: 16 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## [1.8.0](https://github.com/ExpediaGroup/spec-transformer/compare/v1.7.2...v1.8.0) (2024-01-14)


### Features

* dummy update ([3ff71bf](https://github.com/ExpediaGroup/spec-transformer/commit/3ff71bfb7c534a477929c74e4cfa543323f2e51e))


### Bug Fixes

* deleted invalid files ([2aa2ec1](https://github.com/ExpediaGroup/spec-transformer/commit/2aa2ec135304ec3f59875bc2de03fa90377c15ac))
* fix release issue ([#174](https://github.com/ExpediaGroup/spec-transformer/issues/174)) ([df44755](https://github.com/ExpediaGroup/spec-transformer/commit/df44755457f6e68aa8de68becef8215ac6c4e9a1))
* fix release issue ([#175](https://github.com/ExpediaGroup/spec-transformer/issues/175)) ([767b1b5](https://github.com/ExpediaGroup/spec-transformer/commit/767b1b599dd8a82a11c43e4a945c3772d70b3f36))
* fix release issues ([#172](https://github.com/ExpediaGroup/spec-transformer/issues/172)) ([036b3d0](https://github.com/ExpediaGroup/spec-transformer/commit/036b3d0cadfe625e5dc59dfa9a0d83f0dcd42eda))
* fix release issues ([#173](https://github.com/ExpediaGroup/spec-transformer/issues/173)) ([3236c11](https://github.com/ExpediaGroup/spec-transformer/commit/3236c118f054cf0798b03752307df0195d6eafdf))
* update git info ([b26aa6a](https://github.com/ExpediaGroup/spec-transformer/commit/b26aa6adc2ec9ebf68b2e9fc7c288dca06a9ff00))
96 changes: 96 additions & 0 deletions dist/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"name": "@expediagroup/spec-transformer",
"version": "1.8.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",
"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"
}

0 comments on commit 95c242a

Please sign in to comment.