Files
setup-ruby/package.json
T
Benoit Daloze 047ed419ae Remove eslint dev dependency
* The many dependencies seem to have some security vulnerabilities.
2020-03-21 12:29:35 +01:00

35 lines
782 B
JSON

{
"name": "setup-ruby",
"version": "0.1.0",
"description": "Download a prebuilt Ruby and add it to the PATH in 5 seconds",
"main": "index.js",
"scripts": {
"lint": "eslint *.js",
"package": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruby/setup-ruby.git"
},
"keywords": [
"GitHub",
"Actions",
"Ruby"
],
"author": "Benoit Daloze",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruby/setup-ruby/issues"
},
"homepage": "https://github.com/ruby/setup-ruby",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.3.1"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1"
}
}