-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"name": "@pixelfusion/aws-scripts",
"version": "2.6.0",
"description": "AWS CDK scripts",
"scripts": {
"build": "tsc",
"lint": "eslint ./src/**/*",
"prettier": "prettier --write ./src/**/*",
"prettier:check": "prettier --check ./src/**/*"
},
"repository": {
"type": "git",
"url": "https://github.com/pixelfusion/aws-scripts.git"
},
"keywords": [
"aws",
"cdk",
"scripts"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"aws-session": "scripts/aws-session.sh"
},
"author": "Pixelfusion",
"license": "ISC",
"private": true,
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.0.5"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.348.0",
"@aws-sdk/credential-providers": "^3.348.0",
"@types/node": "^18.14.6",
"aws-cdk-lib": "^2.78.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.5.2"
}
}