-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "aws-route53-eip-config",
"version": "0.0.undefined",
"description": "Detect potential route53 takeovers from unowned EIPs",
"author": "Rhosys Developers <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Rhosys/AWS-Route53-EIP-Config.git"
},
"license": "Apache-2.0",
"keywords": [
"AWS",
"EIP",
"Config",
"Route53"
],
"files": [
"src"
],
"mode": "production",
"dependencies": {
"aws-sdk": "^2.981.0",
"luxon": "^2.0.2"
},
"scripts": {
"lint": "eslint --ext .js src make.js",
"setup": "node make.js setup",
"after_build": "node make.js after_build",
"test.bak": "babel src -d lib && mocha -r esm tests/*.test.js"
},
"devDependencies": {
"aws-architect": "^6.6.4",
"ci-build-tools": "^1.0.13",
"commander": "^4.0.1",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-cimpress-atsquad": "1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.17.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6"
},
"engines": {
"node": ">=12"
}
}