mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-22 22:56:07 +00:00
98c13a9ed3
* add support for mise.toml version file type * changes from review * Keep versioning consistent * fix default value for version-file-type input * Use single `version-file`, autodetect type * Update src/setup-beam.js Co-authored-by: Paulo F. Oliveira <paulo.ferraz.oliveira@gmail.com> * Improve log output for mise version files * Rebuild dist * Run build-dist * add support for mise.toml version file type * changes from review * Keep versioning consistent * fix default value for version-file-type input * Use single `version-file`, autodetect type * Update src/setup-beam.js Co-authored-by: Paulo F. Oliveira <paulo.ferraz.oliveira@gmail.com> * Improve log output for mise version files * Rebuild dist * Run build-dist --------- Co-authored-by: Michael Ruoss <michael.ruoss@cradle.bio> Co-authored-by: Michael Ruoss <michael@michaelruoss.ch> Co-authored-by: Paulo F. Oliveira <paulo.ferraz.oliveira@gmail.com>
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "setup-beam",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "ncc build src/setup-beam.js --no-cache",
|
|
"format": "prettier src/**/*.js test/**/*.js *.mjs --write",
|
|
"eslint": "eslint src/**/*.js test/**/*.js *.mjs",
|
|
"licenses": "yarn licenses generate-disclaimer > 3RD_PARTY_LICENSES",
|
|
"markdownlint": "markdownlint *.md ./github/**/*.md",
|
|
"shellcheck": "shellcheck .github/workflows/*.sh",
|
|
"test": "node --test --test-reporter=spec",
|
|
"yamllint": "eslint .github/workflows/**.yml .github/*.yml .*.yml *.yml",
|
|
"clean-dist": "rm -rf ./dist",
|
|
"lint": "npm run markdownlint && npm run shellcheck && npm run yamllint && npm run eslint",
|
|
"build-dist": "npm run clean-dist && npm install && npm run build && npm run format && npm run lint"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "3.0.0",
|
|
"@actions/exec": "3.0.0",
|
|
"@actions/tool-cache": "4.0.0",
|
|
"csv-parse": "6.1.0",
|
|
"lodash": "4.17.23",
|
|
"semver": "7.7.4",
|
|
"toml": "3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "10.0.1",
|
|
"@vercel/ncc": "0.38.4",
|
|
"eslint": "10.0.3",
|
|
"eslint-plugin-yml": "3.3.1",
|
|
"globals": "17.4.0",
|
|
"markdownlint-cli": "0.48.0",
|
|
"prettier": "3.8.1",
|
|
"shellcheck": "4.1.0",
|
|
"yarn": "1.22.22"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|