-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
88 lines (88 loc) · 2.46 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
{
"name": "serverless-vpc-discovery",
"version": "6.0.0",
"engines": {
"node": ">=16"
},
"description": "Serverless Plugin to modify VPC values",
"author": "Amplify Education Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/amplify-education/serverless-vpc-discovery.git"
},
"bugs": {
"url": "https://github.com/amplify-education/serverless-vpc-discovery/issues"
},
"homepage": "https://github.com/amplify-education/serverless-vpc-discovery#readme",
"keywords": [
"serverless discovery VPC",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"VPC",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com"
],
"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": "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": {
"@aws-sdk/client-lambda": "^3.696.0",
"@types/chai": "^5.0.1",
"@types/chai-spies": "^1.0.6",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@types/randomstring": "^1.3.0",
"@types/shelljs": "^0.8.15",
"aws-sdk-client-mock": "^4.1.0",
"chai": "^4.5.0",
"chai-spies": "^1.1.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"js-yaml": "^4.1.0",
"mocha": "^10.8.2",
"mocha-param": "^2.0.1",
"nyc": "^17.1.0",
"randomstring": "^1.3.0",
"serverless": "^4.4.11",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.696.0",
"@aws-sdk/credential-providers": "^3.696.0",
"@smithy/config-resolver": "^3.0.12",
"@smithy/node-config-provider": "^3.1.11",
"@smithy/smithy-client": "^3.4.4",
"@smithy/util-retry": "^3.0.10",
"ts-md5": "^1.3.1"
}
}