-
Notifications
You must be signed in to change notification settings - Fork 4
/
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": "route53-controller",
"version": "0.2.0",
"description": "Update route53 records based on describeInstances filters.",
"main": "index.js",
"scripts": {
"lint": "jshint *.js lib bin test",
"coverage": "istanbul cover test",
"test": "node test"
},
"bin": {
"createLambdaPackage": "./bin/createLambdaPackage.js",
"createPolicy": "./bin/createPolicy.js",
"lambdaFunction": "./bin/lambdaFunction.js",
"updateRecordSets": "./bin/updateRecordSets.js",
"uploadResource": "./bin/uploadResource.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/plediii/route53-controller.git"
},
"keywords": [
"route53",
"aws",
"dns"
],
"author": "Paul J. Ledbetter III",
"license": "ISC",
"bugs": {
"url": "https://github.com/plediii/route53-controller/issues"
},
"homepage": "https://github.com/plediii/route53-controller#readme",
"dependencies": {
"aws-sdk": "^2.1.44",
"bluebird": "^2.9.34",
"jszip": "^2.5.0",
"lodash": "^3.10.1",
"minimist": "^1.1.3",
"moment": "^2.10.6"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"istanbul": "^0.3.20",
"pre-commit": "^1.1.1",
"tape": "^4.2.0",
"jshint": "^2.8.0"
}
}