-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.33 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
{
"name": "@malijs/onerror",
"version": "0.4.0",
"description": "On error middleware for Mali",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/malijs/onerror.git"
},
"author": {
"name": "Bojan D.",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/malijs/onerror/issues"
},
"homepage": "https://github.com/malijs/onerror",
"keywords": [
"mali",
"grpc",
"service",
"server",
"microservice"
],
"scripts": {
"test": "ava -v",
"docs": "jsdoc2md index.js --heading-depth 3 --template readme.hbs > README.md",
"lint.fix": "standard --fix"
},
"types": "index.d.ts",
"dependencies": {
"@malijs/call-types": "^0.4.0"
},
"devDependencies": {
"@grpc/grpc-js": "^1.2.11",
"@grpc/proto-loader": "^0.5.6",
"async": "^3.2.0",
"ava": "^3.15.0",
"greenkeeper-lockfile": "^1.15.1",
"highland": "3.0.0-beta.7",
"jsdoc-to-markdown": "^7.0.0",
"lodash": "^4.17.21",
"mali": "^0.41.0",
"standard": "^16.0.3"
},
"directories": {
"test": "test"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.0.0"
},
"standard": {
"ignore": [
"**/*_pb.js"
]
}
}