-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "@autotelic/envelope-encryptor",
"version": "0.6.8",
"description": "Envelope encryption with configurable KMS",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"files": [
"index.js",
"index.cjs",
"lib/awsKms.js",
"lib/dummyKms.js",
"lib/kekService.js",
"index.d.ts"
],
"scripts": {
"fix": "npm run lint -- --fix",
"lint": "standard",
"test": "tap --100",
"build:cjs": "rollup index.js --file index.cjs --format cjs",
"prepublish": "npm run build:cjs",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/envelope-encryptor.git"
},
"keywords": [
"envelope",
"encryption",
"kms"
],
"author": "Autotelic Development Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/envelope-encryptor/issues"
},
"homepage": "https://github.com/autotelic/envelope-encryptor#readme",
"devDependencies": {
"rollup": "^4.18.0",
"sinon": "^13.0.0",
"standard": "^16.0.0",
"tap": "^15.0.10"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.555.0"
}
}