-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 724 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 724 Bytes
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
{
"name": "route53dynamicdns",
"version": "1.4.0",
"description": "Update AWS Route53 hosted zone with current public IP address. Alternative to Dynamic DNS services such as Dyn, No-IP, etc",
"author": "Steven Mayotte <mayots@gmail.com>",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "standard && markdownlint-cli2 '*.md' '**/*.md' '#node_modules'"
},
"dependencies": {
"@aws-sdk/client-route-53": "^3.969.0",
"@aws-sdk/client-ses": "^3.969.0",
"dotenv": "^17.2.3",
"log4js": "^6.9.1"
},
"engines": {
"node": ">=24"
},
"private": true,
"license": "MIT",
"devDependencies": {
"markdownlint-cli2": "^0.20.0",
"standard": "^17.1.2"
}
}