-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 1.93 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "allserver",
"version": "2.4.1",
"description": "Multi-protocol simple RPC server and [optional] client. Boilerplate-less. Opinionated. Minimalistic. DX-first.",
"main": "src/index.js",
"scripts": {
"lint": "eslint ./",
"test": "mocha",
"cov": "nyc --reporter=html npm run test"
},
"keywords": [
"simple",
"rpc",
"http",
"grpc",
"websocket",
"lambda",
"server",
"microservice"
],
"files": [
"src",
"*.js",
"mandatory.proto"
],
"repository": {
"type": "git",
"url": "http://github.com/flash-oss/allserver"
},
"bugs": {
"url": "https://github.com/flash-oss/allserver/issues"
},
"homepage": "https://github.com/flash-oss/allserver",
"author": "Vasyl Boroviak",
"license": "MIT",
"peerDependencies": {
"@grpc/grpc-js": "^1.1.7",
"@grpc/proto-loader": "^0.7.5",
"bullmq": "^3.10.1",
"express": "^4.18.2",
"micro": "^10.0.1",
"node-fetch": "^2.6.9"
},
"peerDependenciesMeta": {
"@grpc/grpc-js": {
"optional": true
},
"@grpc/proto-loader": {
"optional": true
},
"bullmq": {
"optional": true
},
"express": {
"optional": true
},
"micro": {
"optional": true
},
"node-fetch": {
"optional": true
}
},
"devDependencies": {
"@grpc/grpc-js": "^1.1.7",
"@grpc/proto-loader": "^0.7.5",
"bullmq": "^3.10.1",
"cls-hooked": "^4.2.2",
"eslint": "^8.55.0",
"express": "^4.18.2",
"lambda-local": "^1.7.3",
"micro": "^10.0.1",
"mocha": "^10.2.0",
"node-fetch": "^2.6.9",
"nyc": "^15.1.0",
"prettier": "^2.1.1"
},
"dependencies": {
"stampit": "^4.3.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2022
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended"
},
"mocha": {
"recursive": true,
"exit": true
}
}