-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 880 Bytes
/
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
{
"name": "dynamic-cloud-dns",
"version": "0.0.2",
"description": "Dynamic DNS functionality backed by Google Cloud DNS.",
"main": "index.js",
"dependencies": {
"@google-cloud/dns": "^2.1.0",
"ip": "^1.1.5"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.7.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "functions-framework --target=updateHost",
"deploy": "gcloud functions deploy updateHost --source . --runtime nodejs12 --trigger-http --allow-unauthenticated --env-vars-file .env.yaml"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/derhally/dynamic-cloud-dns.git"
},
"bugs": {
"url": "https://github.com/derhally/dynamic-cloud-dns/issues"
},
"homepage": "https://github.com/derhally/dynamic-cloud-dns"
}