-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "viem-kms-signer",
"version": "1.0.1",
"description": "A Viem compatible signer that connects to AWS KMS",
"main": "dist/index.js",
"repository": "jackchuma/viem-kms-signer",
"scripts": {
"build": "tsc",
"clean": "rm -r dist",
"test": "jest",
"test:cov": "jest --coverage"
},
"keywords": [],
"author": "Jack Chuma",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-kms": "^3.499.0",
"asn1.js": "^5.4.1",
"bn.js": "^5.2.1",
"viem": "^2.5.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}