# 1.0.0 (2021-07-16) ### Bug Fixes * **deps:** bump @actions/core from 1.2.4 to 1.2.5 ([2a924ef](2a924ef141)) * **deps:** bump @actions/core from 1.2.5 to 1.2.6 ([ad60484](ad60484801)) * **deps:** bump @actions/core from 1.2.6 to 1.2.7 ([8841075](88410754be)) * **deps:** bump @actions/core from 1.2.7 to 1.3.0 ([ce79fdc](ce79fdc2f6)) * **deps:** bump @actions/core from 1.3.0 to 1.4.0 ([2e8c432](2e8c43235f)) * **deps:** bump @actions/exec from 1.0.4 to 1.1.0 ([c084b7e](c084b7ef42)) * **deps:** bump @actions/tool-cache from 1.6.0 to 1.6.1 ([18153c6](18153c6e04)) * **deps:** bump @actions/tool-cache from 1.6.1 to 1.7.0 ([bf3f86e](bf3f86e8d9)) * **deps:** bump @actions/tool-cache from 1.7.0 to 1.7.1 ([94c7d2f](94c7d2fa1f)) * wrong input name ([d2f3788](d2f378829d)) * wrong input name ([7da80b7](7da80b7ba5)) ### Features * implement basic feature working for Linux only ([367ba49](367ba4923b)) * make `version` input required ([52b82a3](52b82a3e33)) * throw error if the platform is not linux ([0cc2e1f](0cc2e1f005))
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "@kengotoda/actions-setup-docker-compose",
|
|
"version": "1.0.0",
|
|
"description": "the GitHub Action setting up docker-compose command",
|
|
"main": "lib/main.js",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"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",
|
|
"url": "git+https://github.com/KengoTODA/actions-setup-docker-compose.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "Kengo TODA <skypencil@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.4.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/tool-cache": "^1.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/exec": "^5.0.0",
|
|
"@semantic-release/git": "^9.0.0",
|
|
"@types/node": "^16.3.2",
|
|
"@typescript-eslint/parser": "^4.28.3",
|
|
"@vercel/ncc": "^0.28.6",
|
|
"eslint": "^7.30.0",
|
|
"eslint-plugin-github": "^4.1.3",
|
|
"eslint-plugin-jest": "^24.3.6",
|
|
"jest": "^27.0.6",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.3.2",
|
|
"semantic-release": "^17.4.4",
|
|
"ts-jest": "^27.0.3",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"release": {
|
|
"branches": "main",
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github",
|
|
[
|
|
"@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}"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|