-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 917 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
{
"name": "aws-parameter-store-json-writer",
"version": "2.0.1",
"description": "A library that stores JSON in to AWS Parameter Store.",
"main": "src/AwsParameterStoreJsonWriter.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattLloyd101/aws-parameter-store-json-writer.git"
},
"keywords": [
"aws",
"parameter",
"store",
"json"
],
"author": "Matthew Lloyd",
"license": "MIT",
"bugs": {
"url": "https://github.com/MattLloyd101/aws-parameter-store-json-writer/issues"
},
"homepage": "https://github.com/MattLloyd101/aws-parameter-store-json-writer#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0"
},
"dependencies": {
"aws-sdk": "^2.359.0",
"retry": "^0.12.0"
},
"publishConfig": {
"access": "public"
}
}