-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.42 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
{
"name": "@relaycorp/cogrpc",
"description": "Relaynet CogRPC binding",
"version": "1.0.0a1",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json && cpy src/lib/cogrpc.proto build/main/lib/ --flat",
"build:module": "tsc -p tsconfig.module.json && cpy src/lib/cogrpc.proto build/module/lib/ --flat",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "jest --coverage",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:integration": "jest --config src/integration_tests/jest.config.js",
"cov": "run-s build test:unit && opn coverage/lcov-report/index.html",
"doc": "typedoc src/index.ts --out build/docs",
"clean": "del-cli build test"
},
"repository": "https://github.com/relaycorp/relaynet-cogrpc-js",
"keywords": [
"awala",
"awala-binding-cogrpc"
],
"author": {
"email": "[email protected]",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/relaycorp/relaynet-cogrpc-js/issues"
},
"engines": {
"node": ">=14"
},
"homepage": "https://docs.relaycorp.tech/relaynet-gogrpc-js/",
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.14.1",
"@types/jest": "^28.1.7",
"@types/verror": "^1.10.10",
"buffer-to-arraybuffer": "0.0.6",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"jest": "^28.1.3",
"jest-date-mock": "^1.0.8",
"jest-extended": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"trash-cli": "^5.0.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typedoc": "^0.26.3",
"typescript": "^5.4.4"
},
"dependencies": {
"@grpc/grpc-js": "< 2",
"@grpc/proto-loader": "^0.7.12",
"@relaycorp/relaynet-core": ">= 1.81.4 < 2",
"check-ip": "^1.1.1",
"it-pipe": "^1.1.0",
"stream-to-it": "^0.2.4",
"uuid-random": "^1.3.0"
},
"peerDependencies": {
"@grpc/grpc-js": "< 2",
"@relaycorp/relaynet-core": ">= 1.81.4 < 2"
}
}