-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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
{
"name": "@iac-factory/secrets-manager-client",
"private": false,
"version": "0.4.51",
"main": "index.js",
"description": "Secrets Manager Client Initializer",
"type": "commonjs",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"compile": "tsc --watch",
"start": "node --es-module-specifier-resolution node .",
"test": "node --es-module-specifier-resolution node unit-testing",
"setup": "npm install --save-dev",
"upload": "npm publish --access public",
"reinstall": "npm update && npm install --global --force",
"prepublishOnly": "npm install --silent && tsc && npm run test"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.49.0",
"@aws-sdk/credential-provider-node": "^3.54.0",
"@aws-sdk/credential-providers": "^3.49.0",
"@cloud-technology/parameter": "^0.7.142"
},
"devDependencies": {
"@aws-sdk/types": "latest",
"@jest/globals": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/uuid": "latest",
"jest": "latest",
"node-notifier": "latest",
"ts-jest": "latest",
"ts-node": "latest",
"tslib": "latest",
"typescript": "latest"
},
"exports": {
".": "./index.js"
}
}