-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "serverless-aws-function-url-custom-domain",
"version": "0.9.28",
"description": "Serverless AWS Lambda URL custom domain configuration via cloudfront distribution and route 53.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/wangsha/serverless-aws-function-url-custom-domain"
},
"scripts": {
"test": "npm run test-lint && npm run test-unit",
"test-lint": "eslint *.js",
"test-unit": "./node_modules/mocha/bin/mocha.js index.test.js"
},
"author": "wangsha",
"keywords": [
"serverless",
"serverless plugin",
"cloudfront",
"function url",
"lambda",
"aws",
"aws lambda",
"amazon web services",
"serverless.com"
],
"dependencies": {
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mustache": "^4.2.0"
},
"peerDependencies": {
"serverless": "3.x"
},
"engines": {
"node": ">=10.0"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0"
}
}