Files
release-please-action/package.json
2021-03-25 15:25:30 -07:00

42 lines
984 B
JSON

{
"name": "release-please-action",
"private": true,
"version": "2.24.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.2.6",
"release-please": "^11.4.1"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"c8": "^7.5.0",
"mocha": "^8.2.1",
"sinon": "^9.2.4",
"standard": "^16.0.3"
},
"standard": {
"ignore": "dist/"
}
}