-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "cdk-lambda-runtime-hacker",
"version": "0.1.1",
"description": "Hack runtimes of Lambdas",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/isotoma/cdk-lambda-runtime-hacker"
},
"keywords": [
"cdk",
"lambda"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"clean": "rm -rf build/",
"compile": "npm run clean && npm run -- tsc --outDir build/ && cp package.json README.md ./build/",
"version": "auto-changelog --template ./changelog_template.hbs -p && git add CHANGELOG.md",
"lint": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --fix",
"lint-check": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --max-warnings 0"
},
"peerDependencies": {
"@aws-cdk/aws-lambda": "^1.18.0",
"@aws-cdk/core": "^1.18.0",
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
},
"peerDependenciesMeta": {
"@aws-cdk/aws-lambda": {
"optional": true
},
"@aws-cdk/core": {
"optional": true
},
"aws-cdk-lib": {
"optional": true
},
"constructs": {
"optional": true
}
},
"devDependencies": {
"@types/node": ">=16",
"typescript": ">=3.0.0",
"@aws-cdk/assert": "^1.18.0",
"auto-changelog": "^1.16.2",
"@aws-cdk/aws-lambda": "^1.18.0",
"@aws-cdk/aws-s3": "^1.18.0",
"@aws-cdk/aws-s3-notifications": "^1.18.0",
"@aws-cdk/core": "^1.18.0",
"aws-cdk-lib": "^2.15.0",
"constructs": "^10.0.0",
"jest": "^26.0.0",
"ts-jest": "^26.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"prettier": "1.19.1",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2"
}
}