Files
actions-setup-docker-compose/package.json

78 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2020-08-27 11:53:14 +08:00
{
"name": "@kengotoda/actions-setup-docker-compose",
"version": "1.2.2",
"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"
],
"author": "Kengo TODA <skypencil@gmail.com>",
2020-08-27 11:53:14 +08:00
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/action": "^7.0.0"
2020-08-27 11:53:14 +08:00
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.1.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.0.0",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"prettier": "3.3.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"release": {
"branches": "main",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
chore(release): 1.0.0 [skip ci] # 1.0.0 (2021-07-16) ### Bug Fixes * **deps:** bump @actions/core from 1.2.4 to 1.2.5 ([2a924ef](https://github.com/KengoTODA/actions-setup-docker-compose/commit/2a924ef1413bbcabb2af1c4c125dbbda83653cfb)) * **deps:** bump @actions/core from 1.2.5 to 1.2.6 ([ad60484](https://github.com/KengoTODA/actions-setup-docker-compose/commit/ad6048480184cd0e09ba039cf7842c8262929cbb)) * **deps:** bump @actions/core from 1.2.6 to 1.2.7 ([8841075](https://github.com/KengoTODA/actions-setup-docker-compose/commit/88410754be5bbdb9e27abdaa6ed8c0606c4323fe)) * **deps:** bump @actions/core from 1.2.7 to 1.3.0 ([ce79fdc](https://github.com/KengoTODA/actions-setup-docker-compose/commit/ce79fdc2f67cc4d693313280dbe61652b8ca178c)) * **deps:** bump @actions/core from 1.3.0 to 1.4.0 ([2e8c432](https://github.com/KengoTODA/actions-setup-docker-compose/commit/2e8c43235f57619143ea84210a601901edee22ae)) * **deps:** bump @actions/exec from 1.0.4 to 1.1.0 ([c084b7e](https://github.com/KengoTODA/actions-setup-docker-compose/commit/c084b7ef427f666df791bf676a5ea0eddd9f3dba)) * **deps:** bump @actions/tool-cache from 1.6.0 to 1.6.1 ([18153c6](https://github.com/KengoTODA/actions-setup-docker-compose/commit/18153c6e0425d2c1b2371d94f4c9c2942dd5e514)) * **deps:** bump @actions/tool-cache from 1.6.1 to 1.7.0 ([bf3f86e](https://github.com/KengoTODA/actions-setup-docker-compose/commit/bf3f86e8d937bcaea294c2cfd5a3e1c7a9500182)) * **deps:** bump @actions/tool-cache from 1.7.0 to 1.7.1 ([94c7d2f](https://github.com/KengoTODA/actions-setup-docker-compose/commit/94c7d2fa1f1843fc86290ae5dd99f0e934a64084)) * wrong input name ([d2f3788](https://github.com/KengoTODA/actions-setup-docker-compose/commit/d2f378829d761ab940b21acafa441bd96ec9ca6c)) * wrong input name ([7da80b7](https://github.com/KengoTODA/actions-setup-docker-compose/commit/7da80b7ba5cdac8f92dfdd9a1102bacc4d7e9a68)) ### Features * implement basic feature working for Linux only ([367ba49](https://github.com/KengoTODA/actions-setup-docker-compose/commit/367ba4923ba3bb7d2594f43366eb64111cf5154c)) * make `version` input required ([52b82a3](https://github.com/KengoTODA/actions-setup-docker-compose/commit/52b82a3e33bf14a26f1b46591ffb006bb4151cf3)) * throw error if the platform is not linux ([0cc2e1f](https://github.com/KengoTODA/actions-setup-docker-compose/commit/0cc2e1f0057d6a0554fa8e6501d71c811e523c17))
2021-07-16 10:10:34 +00:00
[
"@semantic-release/exec",
{
"prepare": "npm run package"
}
],
[
"@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
}
}