mirror of
https://github.com/webfactory/ssh-agent.git
synced 2025-04-22 06:08:42 +00:00
* add `cleanup.js` for stopping the ssh-agent after the job is done * add `scripts/build.js` to make it easier to build the files in `dist/` * update README * remove meaningless dependency `child_process` (its a node core package) * update `@actions/core` to `^1.2.4`
16 lines
473 B
JSON
16 lines
473 B
JSON
{
|
|
"name": "webfactory-action-ssh-agent",
|
|
"repository": "git@github.com:webfactory/ssh-agent.git",
|
|
"description": "GitHub Action to set up ssh-agent with a private SSH key",
|
|
"version": "0.1.0",
|
|
"main": "index.js",
|
|
"author": "webfactory GmbH <info@webfactory.de>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@actions/core": "^1.2.4",
|
|
"@zeit/ncc": "^0.20.5"
|
|
},
|
|
"scripts": {
|
|
"build": "node scripts/build.js"
|
|
}
|
|
}
|