forked from vandium-io/aws-param-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.08 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "aws-param-env-sdkv3",
"version": "3.0.0",
"description": "Module for synchronously loading AWS SSM Parameter Store values into environment variables, fork of aws-param-env using awsdkv3",
"main": "lib/index.js",
"keywords": [
"AWS",
"SSM",
"secret",
"parameter store",
"parameter",
"store",
"synchronously",
"synchronous",
"environment",
"env"
],
"scripts": {
"test": "nyc mocha 'lib/**/__tests__/*' --recursive"
},
"nyc": {
"check-coverage": true,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/coggle/aws-param-env.git"
},
"engines": {
"node": ">=10.16"
},
"author": "Vandium Software Inc., Coggle",
"license": "BSD-3-Clause",
"files": [
"/lib"
],
"devDependencies": {
"chai": "^4.1.2",
"env-restorer": "^1.0.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0"
},
"dependencies": {
"aws-param-store-sdkv3": "^4.0.0"
}
}