forked from amplify-education/serverless-domain-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "serverless-domain-manager",
"version": "3.2.6",
"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/index.js",
"bin": {},
"scripts": {
"test": "tsc --project . && nyc mocha -r ts-node/register test/unit-tests/index.test.ts && nyc report --reporter=text-summary",
"integration-test": "node ./node_modules/istanbul/lib/cli.js test _mocha test/integration-tests -- -R spec",
"lint": "tslint --project .",
"build": "tsc --project ."
},
"files": [
"*.js",
"*.ts",
"*.json",
"dist/*.js"
],
"nyc": {
"extension": [
".ts"
]
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-spies": "^1.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.0",
"aws-sdk-mock": "^1.7.0",
"chai": "^3.5.0",
"chai-spies": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-param": "^2.0.0",
"nyc": "^14.1.1",
"randomstring": "^1.1.5",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"shelljs": "^0.8.3",
"ts-node": "^8.0.1",
"tslint": "^5.1.0",
"tslint-microsoft-contrib": "^6.0.0",
"typescript": "^3.2.2",
"wrappy": "^1.0.2"
},
"dependencies": {
"aws-sdk": "^2.177.0",
"chalk": "^2.4.1"
}
}