forked from openlawteam/ethers-gcp-kms-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.8 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
{
"name": "@toolchainx/ethers-gcp-kms-signer",
"version": "1.0.4",
"description": "An Ethers.js compatible signer that connects to GCP KMS",
"main": "dist/signer.js",
"types": "dist/signer.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"coverage": "npm test -- --coverage",
"lint": "eslint . --ext js,ts",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.build.json --emitDeclarationOnly && babel src -d dist --ignore **/*.test.d.ts,**/*.test.ts -x .ts",
"preversion": "npm run lint && npm test && npm run build",
"semantic-release": "semantic-release",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"commitlint-circle": "commitlint-circle",
"upgrade-deps": "npx updtr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolchainX/ethers-gcp-kms-signer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/toolchainX/ethers-gcp-kms-signer/issues"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --ext js,ts",
"git add"
]
},
"homepage": "https://github.com/toolchainX/ethers-gcp-kms-signer#readme",
"dependencies": {
"@google-cloud/kms": "3.0.1",
"@metamask/eth-sig-util": "4.0.0",
"asn1.js": "5.4.1",
"bn.js": "5.2.0",
"crypto": "1.0.1",
"dotenv": "^10.0.0",
"ethereumjs-util": "7.1.3",
"ethers": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"key-encoder": "2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/prompt": "^13.2.1",
"@ls-age/commitlint-circle": "^1.0.0",
"@types/asn1": "^0.2.0",
"@types/google-cloud__kms": "^1.5.3",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.3",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"semantic-release-npm-github-publish": "^1.5.1",
"ts-node": "^10.3.1",
"typescript": "^4.4.4"
}
}