setup-rust-action/package.json
Héctor Ramón Jiménez a3cabb4dc1 Update package.json
2019-08-16 02:18:21 +02:00

41 lines
910 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": "tsc",
"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.0.0",
"@actions/io": "^1.0.0",
"@actions/exec": "^1.0.0",
"@actions/github": "^1.0.0",
"@actions/tool-cache": "^1.0.0",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}