-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "@aws-crypto/client-node",
"keywords": [
"cryptography",
"crypto",
"encryption",
"envelope encryption",
"client side encryption",
"CSE",
"aws"
],
"version": "2.1.0",
"scripts": {
"build": "tsc -b tsconfig.json",
"lint": "run-s lint-*",
"lint-eslint": "eslint src/*.ts",
"lint-prettier": "prettier -c src/*.ts"
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/caching-materials-manager-node": "file:../caching-materials-manager-node",
"@aws-crypto/decrypt-node": "file:../decrypt-node",
"@aws-crypto/encrypt-node": "file:../encrypt-node",
"@aws-crypto/kms-keyring-node": "file:../kms-keyring-node",
"@aws-crypto/material-management-node": "file:../material-management-node",
"@aws-crypto/raw-aes-keyring-node": "file:../raw-aes-keyring-node",
"@aws-crypto/raw-rsa-keyring-node": "file:../raw-rsa-keyring-node",
"tslib": "^2.2.0"
},
"sideEffects": false,
"main": "./build/main/index.js",
"types": "./build/main/index.d.ts",
"files": [
"build/**/*"
]
}