setup-rust-action/package.json

37 lines
837 B
JSON
Raw Normal View History

2019-08-15 17:16:59 +00:00
{
2019-08-16 00:18:21 +00:00
"name": "setup-rust-action",
2019-08-15 17:16:59 +00:00
"version": "0.0.0",
"private": true,
2019-08-16 00:18:21 +00:00
"description": "Set up a specific Rust toolchain in your Github Actions workflows",
2019-08-15 17:16:59 +00:00
"main": "lib/main.js",
"scripts": {
2020-08-11 22:47:58 +00:00
"build": "ncc build src/main.ts --minify"
2019-08-15 17:16:59 +00:00
},
"repository": {
"type": "git",
2019-08-16 00:18:21 +00:00
"url": "git+https://github.com/hecrj/setup-rust-action.git"
2019-08-15 17:16:59 +00:00
},
"keywords": [
2019-08-16 00:18:21 +00:00
"github",
2019-08-15 17:16:59 +00:00
"actions",
2019-08-16 00:18:21 +00:00
"rust",
2019-08-15 17:16:59 +00:00
"setup"
],
2019-08-16 00:18:21 +00:00
"author": "Héctor Ramón",
2019-08-15 17:16:59 +00:00
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
2020-04-29 18:24:12 +00:00
"@actions/exec": "^1.0.4",
2019-08-15 17:16:59 +00:00
"@actions/github": "^1.0.0",
2020-04-29 18:24:12 +00:00
"@actions/io": "^1.0.0",
2020-08-11 22:46:05 +00:00
"@actions/tool-cache": "^1.6.0",
2019-08-15 17:16:59 +00:00
"semver": "^6.1.1"
},
"devDependencies": {
2020-08-11 22:46:05 +00:00
"@types/node": "^12.12.54",
2020-03-21 06:35:09 +00:00
"@types/semver": "^6.2.1",
"@zeit/ncc": "^0.21.1",
2020-08-11 22:46:05 +00:00
"typescript": "^3.9.7"
2019-08-15 17:16:59 +00:00
}
}