-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.92 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
{
"name": "aurora-snapshot-copier-cdk",
"version": "2.2.0",
"description": "",
"license": "MIT",
"author": {
"name": "Isotoma Limited",
"email": "hello@isotoma.com",
"url": "https://isotoma.com"
},
"repository": {
"type": "git",
"url": "https://github.com/isotoma/aurora-snapshot-copier-cdk"
},
"keywords": [
"cdk",
"aurora",
"aws",
"snapshots"
],
"scripts": {
"test": "npm run cleantsc && jest",
"tsc": "tsc",
"clean": "rm -rf build/",
"cleantsc": "rm -f index.js cdkv2.js *.d.ts handler/*.js handler/*.d.ts",
"compile": "npm run clean && npm run -- tsc --outDir build/ && cp package.json README.md ./build/",
"version": "auto-changelog --hide-credit -p && git add CHANGELOG.md",
"_lint": "eslint 'index.ts' cdkv2.ts 'handler/**/*.ts' 'test/**/*.ts' jest.config.js",
"lint": "npm run -- _lint --fix",
"lint-check": "npm run -- _lint --fix --max-warnings 0",
"docs": "typedoc index.ts --includeVersion"
},
"peerDependencies": {
"aws-cdk-lib": "^2.51.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"@aws-sdk/client-kms": "^3.576.0",
"@aws-sdk/client-rds": "^3.576.0",
"@types/jest": "^27.0.2",
"@types/node": "^18.19.33",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"auto-changelog": "^2.3.0",
"aws-cdk-lib": "^2.51.0",
"aws-sdk-client-mock": "^4.0.0",
"constructs": "^10.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.0",
"prettier": "^2.4.1",
"sinon": "^12.0.1",
"ts-jest": "^27.0.7",
"typedoc": "^0.25.13",
"typescript": "^4.9.5"
}
}