-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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": "@thundra/cdk-rds-initializer",
"version": "0.3.3",
"description": "AWS CDK custom resource to initialize AWS RDS database",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"clean": "rimraf dist coverage tsconfig.tsbuildinfo",
"test": "AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test jest",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build && cd lambdas && npm run build",
"release": "release-it ${VERSION_SCALE} --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks"
},
"peerDependencies": {
"aws-cdk": "^2.138.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"aws-cdk-lib": "2.138.0",
"constructs": "^10.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"jest": "^27.5.1",
"release-it": "^14.12.5",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thundra-io/thundra-cdk-rds-initializer.git"
},
"keywords": [
"aws",
"aws-cdk",
"aws-cdk-construct",
"aws-rds",
"rds"
],
"author": "Tolga Takır <[email protected]>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/thundra-io/thundra-cdk-rds-initializer/issues"
},
"homepage": "https://github.com/thundra-io/thundra-cdk-rds-initializer#readme",
"publishConfig": {
"access": "public"
}
}