-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "aws-env-variables",
"version": "1.0.6",
"description": "aws-env-variables is a lightweight utility package that retrieves secrets from AWS and stores them in a .env",
"license": "MIT",
"author": "Leon Cross",
"homepage": "https://github.com/leoncross/aws-env-variables#readme",
"main": "build/index.js",
"bin": {
"aws-env-variables": "bin/aws-env-variables"
},
"scripts": {
"build": "tsc --build",
"lint": "./node_modules/.bin/eslint",
"test": "./node_modules/.bin/jest --coverage",
"publish": "npm run build && npm publish"
},
"dependencies": {
"aws-sdk": "^2.1072.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.1.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.5.5"
},
"keywords": [
".env",
"aws",
"aws environment variables",
"deployment",
"dotenv",
"environment variables",
"parameter store",
"secrets manager"
],
"files": [
"build/index.js",
"build/src/**"
]
}