-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 932 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 932 Bytes
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
{
"name": "adasql",
"version": "1.2.0",
"description": "CLI SQL client for AWS Aurora Data API Databases",
"bin": {
"adasql": "index.js"
},
"scripts": {
"prepare": "tsc",
"test": "eslint . --ext .ts"
},
"author": "Chase Douglas <chasedouglas@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.17",
"@types/yargs": "^13.0.11",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@aws-sdk/client-iam": "^3.1.0",
"@aws-sdk/client-rds": "^3.1.0",
"@aws-sdk/client-rds-data": "^3.1.0",
"@aws-sdk/client-secrets-manager": "^3.1.0",
"@aws-sdk/client-sts": "^3.1.0",
"@aws-sdk/credential-provider-ini": "^3.1.0",
"inquirer": "^3.3.0",
"prettyoutput": "^1.2.0",
"yargs": "^15.4.1"
}
}