setup-bazel/package.json
2023-01-10 16:20:36 -08:00

23 lines
729 B
JSON

{
"name": "setup-bazel",
"version": "0.1.0",
"description": "Install and configure Bazel for GitHub Actions",
"main": "index.js",
"engines" : {
"node" : "16.x"
},
"scripts": {
"build": "ncc build index.js -s -o dist/main && ncc build post.js -s -o dist/post",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alex Rodionov <p0deje@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/cache": "https://github.com/p0deje/toolkit/raw/730a2921638a36a31bb6bef6a70f34bff2c99aff/packages/cache/actions-cache-3.1.2.tgz",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.3.0",
"@vercel/ncc": "^0.36.0",
"yaml": "^2.2.1"
}
}