5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-12 13:13:50 +00:00
semantic-release-action/package.json
semantic-release-bot cf5f706ea8 chore(release): 2.0.0 [skip ci]
# [2.0.0](https://github.com/cycjimmy/semantic-release-action/compare/v1.3.1...v2.0.0) (2019-10-21)

### Styles

* **outputs:** uniform outputs to underline format ([4cea44f](4cea44f71a))

### BREAKING CHANGES

* **outputs:** uniform outputs to underline format

Before:

outputs:
- new-release-published:
- new-release-version
- new-release-major-version
- new-release-minor-version
- new-release-patch-version

After:

outputs:
- new_release_published:
- new_release_version
- new_release_major_version
- new_release_minor_version
- new_release_patch_version
2019-10-21 05:31:55 +00:00

35 lines
924 B
JSON

{
"name": "@cycjimmy/semantic-release-action",
"version": "2.0.0",
"description": "GitHub Action for Semantic Release",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycjimmy/semantic-release-action.git"
},
"keywords": [
"semantic-release",
"action"
],
"author": "cycjimmy <cycjimmy@gmail.com> (https://github.com/cycjimmy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cycjimmy/semantic-release-action/issues"
},
"homepage": "https://github.com/cycjimmy/semantic-release-action#readme",
"dependencies": {
"@actions/core": "^1.1.3",
"semantic-release": "^15.13.24"
},
"devDependencies": {
"cz-conventional-changelog": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}