mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 15:16:08 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "setup-beam",
|
|
"version": "1.6.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "ncc build src/setup-beam.js --no-cache --license licenses.txt",
|
|
"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-*",
|
|
"test": "node __tests__/setup-beam.test.js",
|
|
"yamllint": "yamllint .github/workflows/**.yml && yamllint .*.yml && yamllint *.yml"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run format -- --check && npm run build && git add dist/"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.2.6",
|
|
"@actions/exec": "1.0.4",
|
|
"semver": "7.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "0.27.0",
|
|
"eslint": "7.22.0",
|
|
"eslint-config-airbnb": "v18.2.1",
|
|
"husky": "5.2.0",
|
|
"markdownlint": "0.23.1",
|
|
"prettier": "2.2.1",
|
|
"shellcheck": "1.0.0",
|
|
"yaml-lint": "1.2.4",
|
|
"yarn": "1.22.10"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
}
|
|
}
|