-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "cdk-lambda-powertuner",
"version": "0.2.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"clone_powertuner": "tsc && node utils/clone_powertuner.js",
"build": "npm run clone_powertuner && jsii",
"package": "jsii-pacmak",
"watch": "tsc -w",
"test": "tsc && jest",
"cdk": "cdk"
},
"jsii": {
"outdir": "dist",
"versionFormat": "short",
"targets": {
"python": {
"distName": "cdk-lambda-powertuner",
"module": "lambda_powertuner"
}
}
},
"devDependencies": {
"fs-extra": "^9.0.0",
"@aws-cdk/assert": "^1.37.0",
"@types/jest": "^25.2.1",
"@types/node": "10.17.5",
"aws-cdk": "1.37.0",
"jest": "^25.5.0",
"jsii": "^1.5.0",
"jsii-pacmak": "^1.5.0",
"ts-jest": "^25.3.1",
"ts-node": "^8.1.0",
"typescript": "~3.7.2",
"source-map-support": "^0.5.16"
},
"dependencies": {
"@aws-cdk/aws-iam": "^1.37.0",
"@aws-cdk/aws-lambda": "^1.37.0",
"@aws-cdk/aws-stepfunctions": "^1.37.0",
"@aws-cdk/aws-stepfunctions-tasks": "^1.37.0",
"@aws-cdk/core": "^1.37.0"
},
"peerDependencies": {
"@aws-cdk/core": "^1.37.0",
"constructs": "*",
"@aws-cdk/aws-iam": "^1.37.0",
"@aws-cdk/aws-lambda": "^1.37.0",
"@aws-cdk/aws-stepfunctions": "^1.37.0",
"@aws-cdk/aws-stepfunctions-tasks": "^1.37.0"
},
"keywords": [
"aws",
"lambda",
"powertuner"
],
"stability": "experimental",
"author": "hello@cdkpatterns.com",
"repository": {
"url": "https://github.com/nideveloper/cdk-lambda-powertuner.git",
"type": "git"
},
"license": "Apache-2.0"
}