-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "cdk-global-cloud",
"description": "An opinionated CDK library for deploying global cloud infrastructures.",
"version": "0.0.6-alpha",
"license": "MIT",
"author": "Sachin Shekhar",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint .",
"format-check": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"aws-cdk-lib": "^2.60.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SachinShekhar/cdk-global-cloud.git"
},
"bugs": {
"url": "https://github.com/SachinShekhar/cdk-global-cloud/issues"
},
"homepage": "https://github.com/SachinShekhar/cdk-global-cloud#readme",
"keywords": [
"cloud",
"aws",
"cdk"
],
"files": [
"dist"
]
}