-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 936 Bytes
/
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
{
"name": "aws-signedurl-lambda",
"version": "1.0.0",
"description": "AWS Lambda for CloudFront Signed URL Generator",
"engines": {
"node": ">=v20.11.1",
"npm": ">=10.2.4"
},
"main": "index.ts",
"scripts": {
"build": "esbuild index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js",
"test": "jest --experimental-vm-modules"
},
"author": "symplesims@gmail.com",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@types/aws-lambda": "^8.10.136",
"@types/node": "^20.11.30",
"axios": "^1.6.8",
"babel-jest": "^29.7.0"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.540.0",
"@aws-sdk/cloudfront-signer": "^3.535.0",
"aws-lambda": "^1.0.7",
"date-fns": "^3.6.0",
"esbuild": "^0.20.2"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}