2020-08-27 11:53:14 +08:00
|
|
|
{
|
2021-07-16 17:22:55 +08:00
|
|
|
"name": "@kengotoda/actions-setup-docker-compose",
|
2023-05-19 08:00:27 +00:00
|
|
|
"version": "1.1.4",
|
2021-07-16 17:22:55 +08:00
|
|
|
"description": "the GitHub Action setting up docker-compose command",
|
2020-08-27 11:53:14 +08:00
|
|
|
"main": "lib/main.js",
|
2021-07-16 18:08:57 +08:00
|
|
|
"private": false,
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
2020-08-27 11:53:14 +08:00
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
|
"package": "ncc build --source-map",
|
|
|
|
|
"test": "jest",
|
|
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2021-07-16 17:50:41 +08:00
|
|
|
"url": "git+https://github.com/KengoTODA/actions-setup-docker-compose.git"
|
2020-08-27 11:53:14 +08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
|
|
|
|
"node",
|
|
|
|
|
"setup"
|
|
|
|
|
],
|
2021-07-16 17:22:55 +08:00
|
|
|
"author": "Kengo TODA <skypencil@gmail.com>",
|
2020-08-27 11:53:14 +08:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2021-07-14 23:30:22 +00:00
|
|
|
"@actions/core": "^1.4.0",
|
2021-06-08 05:23:30 +00:00
|
|
|
"@actions/exec": "^1.1.0",
|
2022-12-25 13:58:23 +08:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2023-01-20 22:41:49 +00:00
|
|
|
"@octokit/action": "^5.0.0"
|
2020-08-27 11:53:14 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-12-22 17:02:54 +00:00
|
|
|
"@semantic-release/exec": "^6.0.3",
|
2021-12-22 17:25:32 +00:00
|
|
|
"@semantic-release/git": "^10.0.1",
|
2022-06-16 17:04:23 +00:00
|
|
|
"@types/node": "^18.0.0",
|
2021-11-03 17:05:29 +00:00
|
|
|
"@typescript-eslint/parser": "^5.3.0",
|
2022-12-07 17:01:09 +00:00
|
|
|
"@vercel/ncc": "^0.36.0",
|
2021-11-04 17:02:56 +00:00
|
|
|
"eslint": "^8.1.0",
|
2021-11-02 17:10:15 +00:00
|
|
|
"eslint-plugin-github": "^4.3.3",
|
2022-08-29 17:03:45 +00:00
|
|
|
"eslint-plugin-jest": "^27.0.1",
|
2023-01-18 06:26:49 +00:00
|
|
|
"jest": "^29.0.0",
|
2021-04-15 05:50:34 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-04-23 08:41:08 +00:00
|
|
|
"prettier": "2.8.8",
|
2022-01-18 17:03:24 +00:00
|
|
|
"semantic-release": "^19.0.2",
|
2023-01-18 06:26:49 +00:00
|
|
|
"ts-jest": "^29.0.0",
|
2023-03-16 18:31:42 +00:00
|
|
|
"typescript": "^5.0.0"
|
2021-07-16 17:22:55 +08:00
|
|
|
},
|
|
|
|
|
"release": {
|
|
|
|
|
"branches": "main",
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@semantic-release/commit-analyzer",
|
|
|
|
|
"@semantic-release/release-notes-generator",
|
|
|
|
|
"@semantic-release/npm",
|
|
|
|
|
"@semantic-release/github",
|
2021-07-16 10:10:34 +00:00
|
|
|
[
|
|
|
|
|
"@semantic-release/exec",
|
|
|
|
|
{
|
|
|
|
|
"prepare": "npm run package"
|
|
|
|
|
}
|
|
|
|
|
],
|
2021-07-16 17:22:55 +08:00
|
|
|
[
|
|
|
|
|
"@semantic-release/git",
|
|
|
|
|
{
|
|
|
|
|
"assets": [
|
|
|
|
|
"dist",
|
|
|
|
|
"package.json"
|
|
|
|
|
],
|
|
|
|
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
]
|
2020-08-27 11:53:14 +08:00
|
|
|
}
|
|
|
|
|
}
|