-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 914 Bytes
/
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
{
"name": "aws-param-store",
"version": "3.2.0",
"description": "Library for loading parameters from AWS Parameter Store",
"keywords": [
"AWS",
"SSM",
"secret",
"parameter store",
"parameter",
"store"
],
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha --recursive"
},
"nyc": {
"check-coverage": true,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/vandium-io/aws-param-store.git"
},
"engines": {
"node": ">=8.10"
},
"author": "Vandium Software Inc.",
"license": "BSD-3-Clause",
"dependencies": {},
"peerDependencies": {
"aws-sdk": "*"
},
"devDependencies": {
"aws-sdk": "^2.584.0",
"chai": "^4.1.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0"
}
}