-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@tacoinfra/conseil-kms",
"version": "1.1.1",
"description": "Utilize AWS KMS Keys to work with ConseilJS.",
"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/conseil-kms.git"
},
"author": "Blockscale LLC",
"license": "MIT",
"dependencies": {
"@tacoinfra/tezos-kms": "^1.1.1",
"@types/node": "^14.14.6",
"conseiljs": "^5.0.5"
},
"bugs": {
"url": "https://github.com/tacoinfra/conseil-kms/issues"
},
"homepage": "https://github.com/tacoinfra/conseil-kms#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"keywords": [
"tezos",
"aws",
"kms",
"hsm",
"library"
]
}