setup-zig/package.json

42 lines
913 B
JSON
Raw Normal View History

2019-10-05 10:44:40 +00:00
{
"name": "setup-zig",
"description": "Use the zig compiler in your Github Action",
2020-11-11 11:44:03 +00:00
"version": "1.3.0",
2019-10-05 10:44:40 +00:00
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
},
2019-10-09 10:34:19 +00:00
"dependencies": {
2020-02-17 14:06:21 +00:00
"@actions/core": "^1.2.2",
"@actions/tool-cache": "^1.3.1",
"semver": "^7.1.3",
"simple-get": "^4.0.0"
2019-10-09 10:34:19 +00:00
},
2019-10-05 10:44:40 +00:00
"devDependencies": {
"@vercel/ncc": "^0.28.0",
"standard": "^16.0.1"
2019-10-05 10:44:40 +00:00
},
"homepage": "https://github.com/goto-bus-stop/setup-zig",
"keywords": [
"Actions",
"Github",
"zig",
"ziglang"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/setup-zig.git"
},
"scripts": {
2020-01-23 09:56:44 +00:00
"prepare": "ncc build index.js -o dist",
"test": "standard && node test"
2019-10-05 10:44:40 +00:00
},
"standard": {
"ignore": [
"dist/**/*.js"
]
2019-10-05 10:44:40 +00:00
}
}