Files
release-please-action/package.json
Benjamin E. Coe 52ffbbe392 feat(release-please)!: consolidate manifest and individual releasers (#398)
Major update to release-please which consolidates the manifest and single
releaser behavior into a single set of strategies, which can be used
on both split and mono-repos.

feat: adds support for draft pull requests.
feat: adds support for draft releases.
refactor!: if switching to manifest releaser, release_created will only be set if "." path is published.
refactor!: switch to using @actions/core getBooleanInput, accepted values for true = ["true", "True", "TRUE"], accepted values for false = ["false", "False", "FALSE"]
2021-12-29 19:54:42 +00:00

43 lines
1007 B
JSON

{
"name": "release-please-action",
"private": true,
"version": "2.35.0",
"description": "automated releases based on conventional commits",
"main": "index.js",
"scripts": {
"test": "c8 mocha test/*.js",
"posttest": "standard",
"fix": "standard --fix",
"build": "ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcoe/release-please-action.git"
},
"keywords": [
"release-please",
"action"
],
"author": "Ben Coe <bencoe@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bcoe/release-please-action/issues"
},
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"release-please": "^13.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"c8": "^7.5.0",
"mocha": "^9.1.3",
"nock": "^13.2.1",
"sinon": "^9.2.4",
"standard": "^16.0.4"
},
"standard": {
"ignore": "dist/"
}
}