6f3e645196
* Use @zeit/ncc * try it * Ignore dist/* files from linting
42 lines
896 B
JSON
42 lines
896 B
JSON
{
|
|
"name": "setup-zig",
|
|
"description": "Use the zig compiler in your Github Action",
|
|
"version": "1.0.1",
|
|
"author": "Renée Kooi <renee@kooi.me>",
|
|
"bugs": {
|
|
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@zeit/ncc": "^0.20.5",
|
|
"standard": "^14.3.1"
|
|
},
|
|
"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": {
|
|
"build": "ncc build index.js -o dist",
|
|
"test": "standard"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.1.3",
|
|
"@actions/tool-cache": "^1.1.2",
|
|
"semver": "^6.3.0",
|
|
"simple-get": "^3.1.0"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist/**/*.js"
|
|
]
|
|
}
|
|
}
|