mirror of
https://github.com/dagger/dagger-for-github.git
synced 2025-12-31 20:59:43 +11:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "dagger-for-github",
|
|
"description": "GitHub Action for Dagger, a programmable deployment system",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"test": "jest --coverage",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"pre-checkin": "yarn run format && yarn run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dagger/dagger-for-github.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"dagger"
|
|
],
|
|
"author": "Dagger",
|
|
"contributors": [
|
|
{
|
|
"name": "CrazyMax",
|
|
"url": "https://crazymax.dev"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.6.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/http-client": "^1.0.11",
|
|
"@actions/tool-cache": "^1.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.14",
|
|
"@types/node": "^14.11.2",
|
|
"@vercel/ncc": "^0.24.1",
|
|
"jest": "^26.4.2",
|
|
"jest-circus": "^26.4.2",
|
|
"jest-runtime": "^26.4.2",
|
|
"prettier": "^2.1.2",
|
|
"ts-jest": "^26.4.1",
|
|
"typescript": "^4.0.3",
|
|
"typescript-formatter": "^7.2.2"
|
|
}
|
|
}
|