-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.03 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
73
74
75
{
"name": "@aws-community/ephemeral",
"author": {
"email": "[email protected]",
"name": "Matt Martz",
"url": "https://matt.martz.codes"
},
"description": "Ephemeral Stacks! A CDK Stack and Construct that will self-destruct after a specified time period.",
"repository": {
"type": "git",
"url": "https://github.com/aws-community-projects/ephemeral"
},
"keywords": [
"aws",
"awscdk",
"cdk",
"step functions",
"ephemeral"
],
"license": "Apache-2.0",
"version": "2.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"build:watch": "jsii --watch",
"clean": "rimraf cdk.out dist lib",
"integ": "tsc --build tsconfig.dev.json && integ-runner",
"lint": "eslint --ext .ts --fix src test",
"package": "jsii-pacmak",
"prebuild": "npm run clean",
"prebuild:watch": "npm run clean",
"prepackage": "npm run build",
"pretest": "npm run lint",
"test": "jest"
},
"devDependencies": {
"@aws-cdk/integ-runner": "^2.85.0-alpha.0",
"@aws-cdk/integ-tests-alpha": "^2.85.0-alpha.0",
"@aws-sdk/client-cloudformation": "^3.362.0",
"@aws-sdk/client-dynamodb": "^3.362.0",
"@aws-sdk/lib-dynamodb": "^3.362.0",
"@aws-sdk/util-dynamodb": "^3.362.0",
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"aws-cdk-lib": "2.85.0",
"constructs": "10.2.17",
"esbuild": "^0.18.10",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"jest": "^27.5.1",
"jsii": "^5.0.7",
"jsii-pacmak": "^1.80.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"aws-cdk-lib": "2.85.0",
"constructs": "10.2.17"
},
"jsii": {
"outdir": "dist",
"versionFormat": "full",
"targets": {},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
}
}