UNPKG

@linkedmink/node-route53-dynamic-dns

Version:

Background process that updates AWS Route 53 DNS address records whenever the public IP of the hosting environment changes

95 lines (94 loc) 2.88 kB
{ "name": "@linkedmink/node-route53-dynamic-dns", "version": "1.1.0", "description": "Background process that updates AWS Route 53 DNS address records whenever the public IP of the hosting environment changes", "keywords": [ "AWS", "Route 53", "DNS", "Dynamic DNS", "Public IP", "Executable", "CLI", "Containers" ], "homepage": "https://github.com/LinkedMink/node-route53-dynamic-dns#readme", "bugs": { "url": "https://github.com/LinkedMink/node-route53-dynamic-dns/issues", "email": "harlan.sang@linkedmink.net" }, "license": "MIT", "author": { "name": "Harlan Sang", "email": "harlan.sang@linkedmink.net", "url": "https://github.com/LinkedMink" }, "funding": { "type": "individual", "url": "https://github.com/sponsors/LinkedMink" }, "type": "module", "main": "dist/index.mjs", "types": "dist/index.d.mts", "repository": { "type": "git", "url": "https://github.com/LinkedMink/node-route53-dynamic-dns.git" }, "engines": { "node": ">=18", "npm": ">=9" }, "scripts": { "start": "tsx watch --tsconfig src/tsconfig.json src/index.mts", "start:built": "node --enable-source-maps dist/index.mjs", "cmd:iam-policy": "tsx --tsconfig src/tsconfig.json src/index.mts iam-policy", "prebuild": "tsx write-package-constants.mts", "build": "rimraf dist && tsc --project src/tsconfig.json", "prepack": "npm run build", "test": "jest --watchAll", "test:ci": "jest --coverage --ci", "test:debug": "jest --cache=false --detectOpenHandles --runInBand --watchAll", "postinstall": "husky install || cd .", "lint": "eslint {src,tests}/**/*.{m,c,}ts *.{,m,c}{j,t}s", "doc": "typedoc", "clean": "rimraf dist coverage *.log", "preversion": "npm run lint && npm run test:ci", "version": "npm run build && git add .", "postversion": "bash ./docker/build.sh" }, "bin": { "node-route53-dynamic-dns": "./dist/index.mjs" }, "dependencies": { "@aws-sdk/client-route-53": "^3.178.0", "chalk": "^5.0.1", "commander": "^11.0.0", "dotenv": "^16.0.2", "public-ip": "^6.0.1", "winston": "^3.8.2" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/bun": "^1.0.3", "@types/eslint": "^8.4.6", "@types/jest": "^29.0.3", "@types/node": "^20.6.3", "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "eslint": "^8.24.0", "eslint-config-prettier": "^9.0.0", "husky": "^9.0.6", "jest": "^29.0.3", "jest-mock-extended": "^3.0.1", "lint-staged": "^15.2.0", "prettier": "^3.0.3", "rimraf": "^5.0.1", "ts-jest": "^29.0.2", "ts-jest-mock-import-meta": "^1.0.0", "ts-node": "^10.9.1", "tsx": "^4.7.0", "type-fest": "^4.3.1", "typedoc": "^0.25.1", "typescript": "^5.2.2" } }