-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "@relaycorp/awala-keystore-cloud",
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"description": "Awala Key Store powered GCP services and JavaScript",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/relaycorp/awala-keystore-gcp-js",
"homepage": "https://docs.relaycorp.tech/awala-keystore-gcp-js/",
"license": "MIT",
"keywords": [
"awala",
"gcp",
"gcp-kms"
],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
"test": "jest --coverage",
"test:integration": "exit 0",
"test:integration:local": "jest --config src/functional_tests/jest.config.js --runInBand --detectOpenHandles",
"doc-api": "typedoc src/index.ts --out build/docs",
"clean": "del-cli build test"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@google-cloud/kms": "^4.5.0",
"@relaycorp/relaynet-core": ">=1.88.1, < 2.0",
"@typegoose/typegoose": "^12.9.1",
"axios": "^1.7.7",
"env-var": "^7.5.0",
"fast-crc32c": "^2.0.0",
"mongoose": "^8.8.4",
"webcrypto-core": "< 2.0"
},
"peerDependencies": {
"@relaycorp/relaynet-core": ">=1.88.1, < 2.0",
"@typegoose/typegoose": "< 13.0",
"mongoose": "< 9.0",
"webcrypto-core": "< 2.0"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.15.1",
"@types/jest": "^29.5.13",
"del-cli": "^6.0.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"mongodb-memory-server": "^10.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typedoc": "^0.27.4",
"typescript": "^5.5.4"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"publishConfig": {
"access": "public"
}
}