-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
{
"name": "@monax/hoard",
"version": "9.0.0-dev.5644f38",
"description": "Hoard client library",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc --build",
"test": "jest src/.*\\.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monax/hoard.git"
},
"jest": {
"testTimeout": 60000,
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"README.md",
"dist/",
"proto/"
],
"keywords": [
"hoard",
"encrypted",
"object",
"store"
],
"author": "Silas Davis",
"contributors": [
"Gregory Hill"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/monax/hoard/issues"
},
"homepage": "https://github.com/monax/hoard#readme",
"dependencies": {
"@grpc/grpc-js": "^1.3.2",
"@types/google-protobuf": "^3.15.2",
"google-protobuf": "^3.17.2",
"openpgp": "4.10.10"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/openpgp": "^4.4.16",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"grpc-tools": "^1.11.1",
"grpc_tools_node_protoc_ts": "^5.2.2",
"jest": "^27.0.4",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^2.1.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}