mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
1fddfab461
* Bump @actions/core from 1.6.0 to 1.9.1 Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.6.0 to 1.9.1. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update what dependabot didn't Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Paulo F. Oliveira <paulo.ferraz.oliveira@gmail.com>
44 lines
1.4 KiB
JSON
44 lines
1.4 KiB
JSON
{
|
|
"name": "setup-beam",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "ncc build src/setup-beam.js --no-cache",
|
|
"format": "prettier src/**/*.js --write && prettier __tests__/**/*.js --write",
|
|
"jslint": "eslint src/**/*.js && eslint __tests__/**/*.js",
|
|
"licenses": "yarn licenses generate-disclaimer > 3RD_PARTY_LICENSES",
|
|
"markdownlint": "markdownlint *.md",
|
|
"shellcheck": "shellcheck src/install-*.sh .github/workflows/*.sh",
|
|
"test": "node __tests__/setup-beam.test.js && node ./__tests__/problem-matchers.test.js",
|
|
"yamllint": "yamllint .github/workflows/**.yml && yamllint .*.yml && yamllint *.yml",
|
|
"build-dist": "npm install && npm run build && npm run format && npm run markdownlint && npm run shellcheck && npm run yamllint && npm run jslint"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run format -- --check && npm run build && git add dist/"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.9.1",
|
|
"@actions/exec": "1.1.1",
|
|
"semver": "7.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "0.33.4",
|
|
"eslint": "8.14.0",
|
|
"eslint-config-airbnb": "19.0.4",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
"eslint-plugin-react": "7.29.0",
|
|
"husky": "7.0.4",
|
|
"markdownlint": "0.25.1",
|
|
"prettier": "2.6.2",
|
|
"shellcheck": "1.1.0",
|
|
"yaml-lint": "1.3.0",
|
|
"yarn": "1.22.18"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
}
|
|
}
|