-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.35 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.35 KB
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
{
"name": "@vamship/aws-lambda",
"version": "3.0.0",
"description": "AWS lambda utilities that include a standardized wrapper for handlers that pre configures a logger object, and supports promises for async handler execution.",
"main": "src/index.js",
"type": "module",
"scripts": {
"clean": "gulp clean",
"format": "gulp format",
"lint": "gulp lint",
"lint-fix": "gulp lint-fix",
"build": "gulp build",
"test": "cross-env NODE_ENV=test dotenv-load gulp --series clean build test-unit",
"package": "cross-env NODE_ENV=test dotenv-load gulp --series clean format lint build test-unit package",
"publish": "gulp publish",
"docs": "gulp docs",
"all": "cross-env NODE_ENV=test dotenv-load gulp --series clean format lint build test-unit clean",
"watch:build": "gulp watch-build",
"watch:test": "cross-env NODE_ENV=development dotenv-load gulp watch-test-unit",
"watch:lint": "gulp watch-lint"
},
"engines": {
"node": ">= 20.11.0",
"npm": ">= 10.2.4"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"src/**/*"
],
"keywords": [],
"author": "Vamshi K Ponnapalli <vamshi.ponnapalli@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.152",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/sinon-chai": "^4.0.0",
"@vamship/build-utils": "2.6.0",
"@vamship/error-types": "^2.1.0",
"@vamship/test-utils": "^3.2.0",
"c8": "^10.1.3",
"chai": "^5.2.1",
"chai-as-promised": "^8.0.1",
"cross-env": "^10.0.0",
"dotenv-load": "^3.0.0",
"esmock": "^2.7.1",
"gulp": "^5.0.1",
"mocha": "^11.7.1",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.0"
},
"dependencies": {
"@vamship/arg-utils": "^3.2.0",
"@vamship/logger": "^5.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vamship/aws-lambda.git"
},
"bugs": {
"url": "https://github.com/vamship/aws-lambda/issues"
},
"homepage": "https://github.com/vamship/aws-lambda#readme",
"buildMetadata": {
"type": "lib",
"language": "ts"
}
}