-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
103 lines (103 loc) · 2.24 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
97
98
99
100
101
102
103
{
"name": "mali",
"version": "0.47.1",
"description": "Minimalistic gRPC microservice framework",
"main": "lib/app.js",
"scripts": {
"lint": "standard --ext lib/*.js test/*.js | snazzy",
"linttest": "npm run lint && ava -v",
"test": "nyc npm run linttest",
"coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"apidocs": "jsdoc2md lib/*.js > api2.md",
"docs": "jsdoc2md lib/*.js --heading-depth 3 | ./fixdocs > api.md",
"benchmark": "node test/benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malijs/mali.git"
},
"author": {
"name": "Bojan D.",
"email": "[email protected]"
},
"contributors": [
{
"name": "Yagiz Nizipli",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/malijs/mali/issues"
},
"homepage": "https://mali.js.org",
"keywords": [
"mali",
"grpc",
"service",
"server",
"microservice"
],
"dependencies": {
"@malijs/call-types": "~0.4.0",
"@malijs/compose": "^1.3.2",
"delegates": "^1.0.0",
"destroy": "^1.2.0",
"ee-first": "^1.1.1",
"lodash.camelcase": "^4.3.0",
"lodash.pull": "^4.1.0"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.6.10",
"@grpc/proto-loader": "^0.3.0 || ^0.4.0 || ^0.5.0 || ^0.6.0 || ^0.7.0"
},
"devDependencies": {
"@grpc/grpc-js": "^1.6.10",
"@grpc/proto-loader": "^0.7.0",
"async": "^3.2.4",
"ava": "^6.1.3",
"benchmarkify": "^3.0.0",
"get-port": "^7.1.0",
"google-protobuf": "^3.21.0",
"highland": "3.0.0-beta.10",
"is-ci": "^3.0.1",
"jsdoc-to-markdown": "^7.1.1",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"test-console": "^2.0.0"
},
"engines": {
"node": ">=14"
},
"standard": {
"ignore": [
"test/protos/*.*",
"test/static/*.*"
]
},
"directories": {
"test": "test"
},
"files": [
"lib",
"index.d.ts"
],
"ava": {
"files": [
"test/*.test.js"
],
"concurrency": 1
},
"types": "index.d.ts",
"nyc": {
"include": [
"lib/*.js"
]
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}