forked from amplify-education/serverless-domain-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.75 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
{
"name": "serverless-domain-manager",
"version": "5.0.0",
"engines": {
"node": ">=4.0"
},
"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": {
"test": "nyc mocha -r ts-node/register --project tsconfig.json test/unit-tests/index.test.ts && nyc report --reporter=text-summary",
"integration-test": "nyc mocha -r ts-node/register --project tsconfig.json test/integration-tests/*.test.ts && nyc report --reporter=text-summary",
"lint": "tslint --project . && tslint --project tsconfig.json",
"build": "tsc --project ."
},
"files": [
"*.js",
"*.ts",
"*.json",
"dist/**/*.js"
],
"nyc": {
"extension": [
".ts"
]
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"aws-sdk-mock": "^5.1.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"mocha": "^8.1.3",
"mocha-param": "^2.0.1",
"nyc": "^15.1.0",
"randomstring": "^1.1.5",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"serverless": "^2.1.1",
"serverless-plugin-split-stacks": "^1.9.3",
"shelljs": "^0.8.4",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"dependencies": {
"aws-sdk": "^2.756.0",
"chalk": "^4.1.0"
}
}