forked from amplify-education/serverless-domain-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "serverless-domain-manager",
"version": "7.3.8",
"engines": {
"node": ">=14"
},
"description": "Serverless plugin for managing custom domains with API Gateways.",
"author": "Amplify Education Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amplify-education/serverless-domain-manager"
},
"keywords": [
"serverless plugin custom domain",
"custom domain",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com",
"domain manager"
],
"main": "dist/src/index.js",
"bin": {},
"scripts": {
"integration-basic": "nyc mocha -r ts-node/register --project tsconfig.json test/integration-tests/basic/basic.test.ts",
"integration-deploy": "nyc mocha -r ts-node/register --project tsconfig.json test/integration-tests/deploy/deploy.test.ts",
"test": "find ./test/unit-tests -name '*.test.ts' | xargs nyc mocha -r ts-node/register --project tsconfig.json --timeout 5000 && nyc report --reporter=text-summary",
"test:debug": "NODE_OPTIONS='--inspect-brk' mocha -j 1 -r ts-node/register --project tsconfig.json test/unit-tests/index.test.ts",
"integration-test": "npm run integration-basic && npm run integration-deploy",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"build": "tsc --project .",
"prepare": "npm run build"
},
"files": [
"*.js",
"*.ts",
"*.json",
"dist/**/*.js"
],
"nyc": {
"extension": [
".ts"
]
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@types/randomstring": "^1.1.12",
"@types/shelljs": "^0.8.15",
"aws-sdk-client-mock": "^3.0.1",
"chai": "^4.4.1",
"chai-spies": "^1.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"mocha": "^10.3.0",
"mocha-param": "^2.0.1",
"nyc": "^15.1.0",
"randomstring": "^1.3.0",
"serverless": "^3.38.0",
"serverless-plugin-split-stacks": "^1.13.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"typescript": "^5.1.6 && <5.2"
},
"dependencies": {
"@aws-sdk/client-acm": "^3.525.0",
"@aws-sdk/client-api-gateway": "^3.525.0",
"@aws-sdk/client-apigatewayv2": "^3.525.0",
"@aws-sdk/client-cloudformation": "^3.526.0",
"@aws-sdk/client-route-53": "^3.525.0",
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/credential-providers": "^3.525.0",
"@smithy/config-resolver": "^2.1.4",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/node-http-handler": "^2.4.1",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"@smithy/util-retry": "^2.1.3",
"proxy-agent": "^6.4.0"
},
"peerDependencies": {
"serverless": "^2.60 || ^3.0.0"
}
}