-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 912 Bytes
/
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
{
"name": "serverless-hosted-zone",
"version": "0.1.0",
"description": "Serverless plugin to create a Route 53 hosted zone.",
"main": "index.js",
"scripts": {
"test": "jest .",
"lint": "eslint .",
"lint:fix": "eslint --fix index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miguel-a-calles-mba/serverless-hosted-zone.git"
},
"keywords": [
"serverless",
"plugin",
"aws",
"cloudformation",
"route 53",
"hosted zone"
],
"author": "Miguel A. Calles, MBA <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miguel-a-calles-mba/serverless-hosted-zone/issues"
},
"homepage": "https://github.com/miguel-a-calles-mba/serverless-hosted-zone#readme",
"dependencies": {},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.1.0"
}
}