-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "@rumblefishdev/eth-signer-kms",
"version": "3.1.0",
"description": "Sign ethereum transaction/messages using KMS service from AWS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --runInBand",
"ci-tests": "docker-compose -f tests/docker-compose.yml run test-runner",
"ci-tests-cmdline": "docker-compose -f tests/docker-compose.yml run test-runner bash",
"lint": "eslint \"**/*.ts\"",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rumblefishdev/eth-signer-kms.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rumblefishdev/eth-signer-kms/issues"
},
"homepage": "https://github.com/rumblefishdev/eth-signer-kms#readme",
"dependencies": {
"@ethersproject/abstract-signer": "^5.5.4",
"@ethersproject/bytes": "^5.5.4",
"@ethersproject/hash": "^5.5.4",
"@ethersproject/keccak256": "^5.5.4",
"@ethersproject/providers": "^5.7.2",
"@types/ethereum-protocol": "^1.0.1",
"asn1.js": "^5.4.1",
"bn.js": "^4.12.0"
},
"devDependencies": {
"@aws-sdk/client-kms": "*",
"@metamask/eth-sig-util": "^4.0.1",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^28.1.0",
"prettier": "^2.3.1",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.0",
"typescript": "^4.3.4"
},
"publishConfig": {
"access": "public"
}
}