-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "aws-parameter-dotenv",
"version": "1.0.2",
"description": "Tiny library to Load environment variables directly from AWS Parameter Store",
"main": "out/index.js",
"typings": "out/index.d.ts",
"types": "out/index.d.ts",
"module": "out/index.es.js",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"test": "npx tap test/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucashfreitas/aws-parameter-dotenv.git"
},
"keywords": [
"AWS",
"dotenv",
"Parameter",
"Store"
],
"author": "Lucas Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucashfreitas/aws-parameter-dotenv/issues"
},
"homepage": "https://github.com/lucashfreitas/aws-parameter-dotenv#readme",
"dependencies": {
"@aws-sdk/client-ssm": "^3.48.0"
},
"devDependencies": {
"@types/node": "^17.0.10",
"@types/tap": "^15.0.5",
"dotenv": "^14.2.0",
"prettier": "^2.5.1",
"tap": "^15.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}