mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-09 14:13:06 +08:00
Bumps the github-actions-dependencies group with 10 updates in the / directory: --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-nodejs dependency-version: 0.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-nodejs/.github/workflows/continuous-integration.yml dependency-version: 0.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml dependency-version: 0.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml dependency-version: 0.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: actions/create-github-app-token dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common dependency-version: 0.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml dependency-version: 0.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml dependency-version: 0.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml dependency-version: 0.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
146 lines
3.4 KiB
JSON
146 lines
3.4 KiB
JSON
{
|
|
"name": "compose-action",
|
|
"description": "Docker Compose Action",
|
|
"version": "0.0.0",
|
|
"author": "hoverkraft",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/hoverkraft-tech/compose-action",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hoverkraft-tech/compose-action.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hoverkraft-tech/compose-action/issues"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker-compose"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.1",
|
|
"@actions/tool-cache": "^2.0.2",
|
|
"@octokit/action": "^8.0.4",
|
|
"docker-compose": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ts-dev-tools/core": "^1.9.7",
|
|
"@vercel/ncc": "^0.38.4",
|
|
"eslint-plugin-github": "^6.0.0",
|
|
"eslint-plugin-jsonc": "^2.21.0"
|
|
},
|
|
"scripts": {
|
|
"package": "npm run package:index && npm run package:post",
|
|
"package:index": "ncc build src/index.ts -o dist --license licenses.txt",
|
|
"package:post": "ncc build src/post.ts -o dist/post && mv dist/post/index.js dist/post.js && rm -rf dist/post",
|
|
"package:watch": "npm run package -- --watch",
|
|
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
"lint:ci": "npm run lint -- --output-file eslint-report.json --format json",
|
|
"all": "npm run format && npm run lint:ci && npm run test:ci && npm run package",
|
|
"build": "tsc --noEmit",
|
|
"format": "prettier --cache --write .",
|
|
"jest": "jest --detectOpenHandles --forceExit",
|
|
"test": "npm run jest --maxWorkers=50%",
|
|
"test:watch": "npm run jest --watch --maxWorkers=25%",
|
|
"test:cov": "npm run test --coverage",
|
|
"test:ci": "npm run test:cov --runInBand",
|
|
"prepare": "ts-dev-tools install"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"verbose": true,
|
|
"clearMocks": true,
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"testMatch": [
|
|
"**/*.test.ts",
|
|
"**/__tests__/**/*.[jt]s?(x)",
|
|
"**/?(*.)+(spec|test)?(.*).+(ts|tsx|js)"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/dist/"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"coverageReporters": [
|
|
"json-summary",
|
|
"text",
|
|
"lcov"
|
|
],
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"./src/**",
|
|
"**/src/**/*.[jt]s?(x)"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"jest"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:jest/recommended",
|
|
"prettier"
|
|
],
|
|
"env": {
|
|
"es2021": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"settings": {
|
|
"jest": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"ignorePatterns": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"semi": true,
|
|
"printWidth": 100,
|
|
"trailingComma": "es5"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,tsx}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"importSort": {
|
|
".js, .jsx, .ts, .tsx": {
|
|
"style": "module",
|
|
"parser": "typescript"
|
|
}
|
|
},
|
|
"tsDevTools": {
|
|
"version": "20220617100200-prettier-cache"
|
|
}
|
|
}
|