2020-05-09 14:55:31 -07:00
|
|
|
{
|
|
|
|
|
"name": "release-please-action",
|
|
|
|
|
"private": true,
|
2025-03-07 10:59:10 -08:00
|
|
|
"version": "4.2.0",
|
2020-05-09 14:55:31 -07:00
|
|
|
"description": "automated releases based on conventional commits",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2023-11-29 13:09:28 -08:00
|
|
|
"test": "c8 mocha --node-option no-experimental-fetch --recursive --timeout=5000 build/test",
|
|
|
|
|
"prepare": "npm run compile",
|
|
|
|
|
"lint": "gts check",
|
|
|
|
|
"compile": "tsc -p .",
|
|
|
|
|
"fix": "gts fix",
|
|
|
|
|
"build": "ncc build src/index.ts",
|
|
|
|
|
"pretest": "npm run compile"
|
2020-05-09 14:55:31 -07:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-03-07 20:03:55 +02:00
|
|
|
"url": "git+https://github.com/googleapis/release-please-action.git"
|
2020-05-09 14:55:31 -07:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"release-please",
|
|
|
|
|
"action"
|
|
|
|
|
],
|
|
|
|
|
"author": "Ben Coe <bencoe@gmail.com>",
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"bugs": {
|
2025-03-07 20:03:55 +02:00
|
|
|
"url": "https://github.com/googleapis/release-please-action/issues"
|
2020-05-09 14:55:31 -07:00
|
|
|
},
|
2025-03-07 20:03:55 +02:00
|
|
|
"homepage": "https://github.com/googleapis/release-please-action#readme",
|
2020-05-09 14:55:31 -07:00
|
|
|
"dependencies": {
|
2022-10-26 10:33:39 -06:00
|
|
|
"@actions/core": "^1.10.0",
|
2025-02-27 09:39:30 -08:00
|
|
|
"release-please": "^16.18.0"
|
2020-05-09 14:55:31 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-11-29 13:09:28 -08:00
|
|
|
"@types/mocha": "^9.0.0",
|
|
|
|
|
"@types/node": "^20.8.10",
|
|
|
|
|
"@types/sinon": "^10.0.0",
|
2023-11-01 19:05:01 +01:00
|
|
|
"@vercel/ncc": "^0.38.0",
|
2021-02-12 16:55:35 -06:00
|
|
|
"c8": "^7.5.0",
|
2023-11-29 13:09:28 -08:00
|
|
|
"gts": "^5.2.0",
|
2022-01-22 18:32:50 +00:00
|
|
|
"mocha": "^9.1.4",
|
2023-11-29 13:09:28 -08:00
|
|
|
"mocked-env": "^1.3.5",
|
2021-12-29 19:54:42 +00:00
|
|
|
"nock": "^13.2.1",
|
2021-02-12 16:55:35 -06:00
|
|
|
"sinon": "^9.2.4",
|
2023-11-29 13:09:28 -08:00
|
|
|
"standard": "^16.0.4",
|
|
|
|
|
"typescript": "^4.6.4"
|
2020-05-09 14:55:31 -07:00
|
|
|
},
|
|
|
|
|
"standard": {
|
|
|
|
|
"ignore": "dist/"
|
2023-11-29 13:09:28 -08:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0"
|
2020-05-09 14:55:31 -07:00
|
|
|
}
|
|
|
|
|
}
|