-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "@bobanetwork/aws-kms",
"version": "2.0.2",
"description": "AWS KMS signing library with strict replay protection support.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"test:coverage": "npm test -- --coverage --collectCoverageFrom='src/**/*.ts' && jest-coverage-badges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobanetwork/aws-kms.git"
},
"author": "Enya Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/bobanetwork/aws-kms/issues"
},
"homepage": "https://github.com/bobanetwork/aws-kms#readme",
"dependencies": {
"@aws-sdk/client-kms": "3.363.0",
"@bobanetwork/light-bridge-chains": "1.1.3",
"@ethereumjs/common": "3.2.0",
"@ethereumjs/tx": "4.2.0",
"@ethersproject/keccak256": "5.7.0",
"@ethersproject/providers": "^5.7.2",
"@types/jest": "^29.5.12",
"asn1.js": "5.4.1",
"bn.js": "5.2.1",
"ethereumjs-util": "7.1.5",
"ethers": "^5.5.4",
"node-fetch": "^2.6.1",
"ts-jest": "^29.1.2"
},
"devDependencies": {
"@types/node": "^16.18.62",
"@types/node-fetch": "^2.6.11",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}