forked from malijs/mali
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.29 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
{
"name": "@indooratlas-npm/mali",
"version": "0.6.0",
"description": "Minimalistic gRPC microservice framework",
"main": "lib/app.js",
"scripts": {
"lint": "standard | snazzy",
"linttest": "npm run lint && ava -v",
"test": "nyc npm run linttest",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "jsdoc2md lib/*.js --heading-depth 3 | md-wrap-code | ./fixdocs > api.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malijs/mali.git"
},
"author": {
"name": "Bojan D.",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/malijs/mali/issues"
},
"homepage": "https://malijs.github.io",
"keywords": [
"mali",
"grpc",
"service",
"server",
"microservice"
],
"dependencies": {
"ascallback": "^1.1.1",
"coveralls": "^3.0.0",
"delegates": "^1.0.0",
"destroy": "^1.0.4",
"ee-first": "^1.1.1",
"error-inject": "^1.0.0",
"grpc-create-metadata": "^3.0.0",
"grpc-inspect": "~0.4.0",
"is-stream": "^1.1.0",
"lodash": "^4.17.0",
"lodash.camelcase": "^4.3.0",
"lodash.concat": "^4.5.0",
"lodash.find": "^4.6.0",
"lodash.forown": "^4.4.0",
"lodash.intersection": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.pick": "^4.4.0",
"lodash.pull": "^4.1.0",
"lodash.upperfirst": "^4.3.1",
"lodash.values": "^4.3.0",
"mali-call-types": "~0.1.0",
"mali-compose": "~1.0.0",
"p-map": "^1.2.0",
"pify": "^3.0.0"
},
"peerDependencies": {
"grpc": "^1.0.0"
},
"devDependencies": {
"ava": "^0.24.0",
"google-protobuf": "^3.5.0",
"grpc": "^1.8.0",
"highland": "^3.0.0-beta.3",
"jsdoc-to-markdown": "^3.0.3",
"md-wrap-code": "^0.1.1",
"nyc": "^11.4.1",
"protobufjs67": "./test/protobufjs67",
"protobufjs68": "./test/protobufjs68",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"test-console": "^1.1.0"
},
"standard": {
"ignore": [
"test/protobufjs67/*.*",
"test/protobufjs68/*.*",
"test/protos/*.*",
"test/static/*.*"
]
},
"directories": {
"test": "test"
},
"files": [
"lib"
],
"ava": {
"files": [
"test/*.test.js"
]
},
"nyc": {
"include": [
"lib/*.js"
]
}
}