forked from Farbfox/hetzner-cloud-deploy-server-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "hetzner-cloud-deploy-server-action",
"version": "0.2.2",
"description": "Deploy a Hetzner Cloud Server from a GitHub Action.",
"main": "deploy.js",
"scripts": {
"build:deploy": "ncc build deploy.js --license LICENSE --out dist/deploy",
"build:clean": "ncc build clean.js --license LICENSE --out dist/clean",
"build": "npm run build:deploy && npm run build:clean",
"release:v2": "npm run build && git add --all && git commit -m \"$COMMIT_MSG\" && git push origin main && git tag -d v2 && git push --delete origin v2 && git tag -a -m \"$COMMIT_MSG\" v2 && git push --follow-tags",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimDaub/hetzner-cloud-deploy-server-action.git"
},
"keywords": [
"github",
"action",
"hetzner",
"continous",
"deployment",
"automate"
],
"author": "Tim Daubenschütz <[email protected]> (https://timdaub.github.io)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/TimDaub/hetzner-cloud-deploy-server-action/issues"
},
"homepage": "https://github.com/TimDaub/hetzner-cloud-deploy-server-action#readme",
"dependencies": {
"@actions/core": "1.2.6",
"cross-fetch": "3.0.6",
"is-port-reachable": "3.0.0",
"periodic-execution": "0.1.0"
},
"devDependencies": {
"@vercel/ncc": "0.25.1",
"ava": "^3.15.0",
"expressively-mocked-fetch": "0.2.2",
"proxyquire": "2.1.3"
}
}