-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 835 Bytes
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
{
"name": "envelopeencryption",
"version": "0.0.1",
"description": "aws kms envelope encryption example",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"aws-sdk": "^2.125.0"
},
"devDependencies": {
"mocha": "^3.5.3",
"prettyjson": "^1.2.1"
},
"scripts": {
"test": "mocha",
"demo": "./demo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjbischoff/kms-envelope-encryption-aws.git"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"envelope",
"encryption",
"kms",
"aws"
],
"author": "cjbischoff",
"license": "MIT",
"bugs": {
"url": "https://github.com/cjbischoff/kms-envelope-encryption-aws/issues"
},
"homepage": "https://github.com/cjbischoff/kms-envelope-encryption-aws#readme"
}