-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.3 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
66
67
68
69
70
71
72
{
"name": "@reapit-cdk/replicated-secret",
"version": "0.1.2",
"description": "Creates a Secret and replicates it across the given regions. Requires a [ReplicatedKey](../replicated-key/readme.md) be passed in.",
"homepage": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/constructs/replicated-secret",
"readme": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/constructs/replicated-secret/readme.md",
"bugs": {
"url": "https://github.com/reapit/ts-cdk-constructs/issues"
},
"license": "MIT",
"scripts": {
"publish": "yarn jsii:publish",
"build": "yarn workspace @reapit-cdk/replicated-key build && yarn jsii:build && reapit-cdk-tsup --lambda --no-main && yarn jsii:package",
"check": "yarn run root:check -p $(pwd)",
"lint": "reapit-cdk-eslint",
"test": "yarn run root:test -- $(pwd)",
"integ": "yarn run root:integ -- $(pwd)",
"jsii:build": "jsii --generate-tsconfig tsconfig.jsii.json --fail-on-warnings",
"jsii:package": "jsii-pacmak",
"jsii:publish": "bash ../../../node_modules/publib/bin/publib jsii-out"
},
"author": {
"name": "Josh Balfour",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/reapit/ts-cdk-constructs.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"stability": "stable",
"keywords": [
"awscdk"
],
"peerDependencies": {
"@reapit-cdk/replicated-key": "^0.1.2",
"aws-cdk-lib": "^2.96.2",
"constructs": "^10.2.70"
},
"devDependencies": {
"@aws-sdk/client-secrets-manager": "3.513.0",
"@reapit-cdk/custom-resource-wrapper": "workspace:^",
"@reapit-cdk/eslint-config": "workspace:^",
"@reapit-cdk/replicated-key": "workspace:^",
"@reapit-cdk/tsup": "workspace:^",
"aws-cdk-lib": "2.96.2",
"aws-lambda": "^1.0.7",
"aws-sdk-client-mock": "^3.0.1",
"constructs": "10.2.70",
"jsii": "^5.3.20",
"jsii-pacmak": "^1.94.0",
"publib": "^0.2.812"
},
"jsii": {
"tsc": {
"outDir": "dist",
"rootDir": "src"
},
"versionFormat": "short",
"excludeTypescript": [
"tests",
"src/lambda"
],
"outdir": "jsii-out",
"targets": {
"python": {
"distName": "reapit-cdk.replicated-secret",
"module": "reapit_cdk.replicated_secret"
}
}
}
}