-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "grpc-error-strategy",
"version": "1.1.0",
"description": "A gRPC implementation of the error strategy interface",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"grpc": "^1.20.0",
"jest": "^26.6.3",
"opener": "^1.5.2",
"rimraf": "^3.0.2",
"standard": "^16.0.3"
},
"scripts": {
"clean": "rimraf coverage",
"cov": "opener coverage/index.html",
"lint": "standard",
"jest": "jest ${JEST_CI_ENV:-'--notify'}",
"test": "npm run clean && standard && npm run jest"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"text-summary"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
},
"testEnvironment": "node",
"verbose": true
},
"standard": {
"env": [
"jest",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpareja/node-grpc-error-strategy.git"
},
"author": "Mario Pareja",
"license": "MIT",
"bugs": {
"url": "https://github.com/mpareja/node-grpc-error-strategy/issues"
},
"homepage": "https://github.com/mpareja/node-grpc-error-strategy#readme"
}