-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 952 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "doddns",
"version": "0.0.0-development",
"description": "Dynamic DNS Client that uses Digital Ocean DNS API to update a subdomain A record with current IP address",
"main": "index.js",
"scripts": {
"test": "standard && mocha",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": "./index.js",
"keywords": [
"DigialOcean",
"ip",
"domain",
"ddns",
"dns",
"dynamic"
],
"engines": {
"node": ">4.4.7"
},
"author": "Xiaoxin Lu <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"digitalocean": "^0.10.0",
"lodash": "^4.15.0",
"public-ip": "^2.1.0",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"mocha": "^5.0.0",
"proxyquire": "^1.7.11",
"sinon": "^5.0.0",
"standard": "^10.0.1",
"semantic-release": "^7.0.1"
},
"repository": "hyperlink/do-dynamic-dns"
}