-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"author": "Victor Smirnov <admin@victorsmirnov.blog> (victorsmirnov.blog)",
"bin": {
"a53": "./dist/src/aws-route53-tools.js",
"aws-route53-tools": "./dist/src/aws-route53-tools.js"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.468.0",
"@aws-sdk/client-route-53": "^3.468.0",
"@aws-sdk/client-route-53-domains": "^3.468.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"update-notifier": "^7.0.0"
},
"description": "An opinionated set of tools to help administer AWS Route53.",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.4",
"@types/update-notifier": "^6.0.8",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"rimraf": "^5.0.5",
"snazzy": "^9.0.0",
"ts-standard": "^12.0.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/dist"
],
"homepage": "https://github.com/victorsmirnov/aws-route53-tools",
"keywords": [
"aws",
"route53",
"dns",
"cli",
"tools"
],
"license": "ISC",
"name": "aws-route53-tools",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"format": "ts-standard --fix --verbose | snazzy",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build",
"start": "node dist/src/aws-route53-tools.js",
"test": "ts-standard --verbose | snazzy"
},
"type": "module",
"version": "0.2.0"
}