-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@dteam/safe-signer",
"version": "0.1.0",
"author": "dteam",
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=16"
},
"description": "Creating an ethers.Signer from the third party secret storages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "c8 ava",
"lint": "gts lint",
"clean": "gts clean",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"fix": "gts fix",
"prepare": "npm run build",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/node": "^18.0.0",
"ava": "^5.2.0",
"c8": "^7.13.0",
"gts": "^4.0.1",
"rimraf": "^4.4.1",
"testcontainers": "^9.4.0",
"ts-node": "^10.9.1",
"typescript": "~4.9.0"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.303.0",
"@cloud-cryptographic-wallet/aws-kms-signer": "^0.1.2",
"@cloud-cryptographic-wallet/cloud-kms-signer": "^0.1.2",
"@cloud-cryptographic-wallet/ethers-adapter": "^0.2.2",
"ethers": "^5.7.2",
"ethers-aws-kms-signer": "^1.3.2",
"hashi-vault-js": "^0.4.13"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"timeout": "600s",
"failFast": true
},
"c8": {
"exclude": [
"test"
],
"reporter": [
"text",
"cobertura",
"html",
"json-summary"
]
},
"repository": {
"type": "git",
"url": "https://github.com/DTeam-Top/safe-signer.git"
},
"bugs": {
"url": "https://github.com/DTeam-Top/safe-signer/issues"
},
"homepage": "https://github.com/DTeam-Top/safe-signer/blob/main/README.md",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"ethereum",
"web3",
"wallet",
"ethers",
"security"
],
"tags": [
"typescript",
"tools"
]
}