-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 1.68 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
{
"name": "dpl",
"version": "5.0.1",
"description": "deploy your lambda function to AWS the quick and easy way.",
"main": "lib/index.js",
"bin": "dpl.js",
"scripts": {
"nocov": "./node_modules/tape/bin/tape ./test/*.test.js",
"test": "nyc tape ./test/*.test.js | tap-nyc",
"deploy": "node dpl.js",
"check-coverage": "npm test && nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 86,
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/index.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"all": true,
"report-dir": "./coverage"
},
"files_to_deploy": [
"package.json",
"lib/",
".env"
],
"lambda_memory": 512,
"lambda_timeout": 42,
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/aws-lambda-deploy.git"
},
"keywords": [
"AWS",
"Amazon",
"Lambda",
"deploy",
"deployment",
"function"
],
"author": "@nelsonic & Friends :-)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/aws-lambda-deploy/issues"
},
"homepage": "https://github.com/dwyl/aws-lambda-deploy#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"aguid": "^2.0.0",
"aws-lambda-test-utils": "^1.3.0",
"decache": "^4.5.1",
"git-rev": "^0.2.1",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"tap-nyc": "^1.0.3",
"tape": "^5.7.5"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.504.0",
"env2": "^2.2.2"
},
"pre-commit": [
"test"
]
}