setup-rust-action/package.json
Héctor Ramón Jiménez da33d0ff71 Update dependencies
2020-08-12 00:46:05 +02:00

38 lines
857 B
JSON

{
"name": "setup-rust-action",
"version": "0.0.0",
"private": true,
"description": "Set up a specific Rust toolchain in your Github Actions workflows",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --minify",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hecrj/setup-rust-action.git"
},
"keywords": [
"github",
"actions",
"rust",
"setup"
],
"author": "Héctor Ramón",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/github": "^1.0.0",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^1.6.0",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/node": "^12.12.54",
"@types/semver": "^6.2.1",
"@zeit/ncc": "^0.21.1",
"typescript": "^3.9.7"
}
}