-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.33 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": "@tacoinfra/tezos-kms",
"version": "1.1.1",
"description": "Utilize AWS KMS Keys to work with the Tezos blockchain.",
"main": "build/src/index.js",
"files": [
"build/**/*"
],
"scripts": {
"build": "npm run clean && npx tsc -d",
"clean": "rm -rf ./build",
"lint": "eslint . --ext .ts --fix",
"test": "echo \"no tests :(\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tacoinfra/tezos-kms.git"
},
"author": "Blockscale LLC",
"license": "MIT",
"dependencies": {
"@lapo/asn1js": "^1.2.1",
"@types/node": "^14.10.1",
"@types/secp256k1": "^4.0.1",
"aws-sdk": "^2.751.0",
"blakejs": "^1.1.0",
"bs58check": "^2.1.2",
"secp256k1": "^4.0.2"
},
"bugs": {
"url": "https://github.com/tacoinfra/tezos-kms/issues"
},
"homepage": "https://github.com/tacoinfra/tezos-kms#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"typescript": "^4.0.2"
},
"keywords": [
"tezos",
"aws",
"kms",
"hsm",
"library"
]
}