-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
{
"name": "layers",
"version": "1.17.0",
"bin": {
"layer": "bin/layers.js"
},
"private": true,
"description": "This CDK app is meant to be used to publish Powertools for AWS Lambda (TypeScript) Lambda Layer. It is composed of a single stack deploying the Layer into the target account.",
"scripts": {
"build": "echo 'Not applicable, run `npx cdk synth` instead to build the stack'",
"test": "echo 'Not applicable'",
"jest": "jest --detectOpenHandles",
"cdk": "cdk",
"package": "echo 'Not applicable'",
"lint": "eslint --ext .ts,.js --no-error-on-unmatched-pattern .",
"lint-fix": "eslint --fix --ext .ts,.js --fix --no-error-on-unmatched-pattern .",
"test:unit": "jest --group=unit",
"test:e2e": "jest --group=e2e",
"createLayerFolder": "cdk synth --context BuildFromLocal=true"
},
"lint-staged": {
"*.{js,ts}": "npm run lint-fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"license": "MIT-0",
"bugs": {
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
},
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
"devDependencies": {
"@aws-lambda-powertools/testing-utils": "file:../packages/testing",
"source-map-support": "^0.5.21"
},
"dependencies": {
"aws-cdk": "^2.121.1",
"aws-cdk-lib": "^2.121.1",
"esbuild": "^0.19.11"
}
}