forked from srueg/dynamic-cloud-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.17 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
{
"name": "dynamic-cloud-dns",
"version": "0.0.1",
"description": "Dynamic DNS functionality backed by cloud DNS.",
"main": "index.js",
"dependencies": {
"@google-cloud/dns": "^0.8.0",
"ip": "^1.1.5"
},
"devDependencies": {
"@google-cloud/functions-emulator": "^1.0.0-beta.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/@google-cloud/functions-emulator/bin/functions; node_modules/@google-cloud/functions-emulator/bin/functions start && node_modules/@google-cloud/functions-emulator/bin/functions deploy updateHost --trigger-http && node_modules/@google-cloud/functions-emulator/bin/functions inspect updateHost",
"stop": "node_modules/@google-cloud/functions-emulator/bin/functions stop",
"deploy": "gcloud functions deploy updateHost --source . --runtime nodejs8 --trigger-http"
},
"author": "Simon Rüegg <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/srueg/dynamic-cloud-dns.git"
},
"bugs": {
"url": "https://gitlab.com/srueg/dynamic-cloud-dns/issues"
},
"homepage": "https://gitlab.com/srueg/dynamic-cloud-dns#README"
}