-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.38 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
{
"name": "anubis",
"version": "1.0.0",
"description": "API Gateway framework",
"main": "index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "nyc mocha"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/express": "^4.0.39",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.47",
"ascii-art": "^1.4.2",
"body-parser": "1.18.2",
"express": "4.16.2",
"http-proxy": "1.16.2",
"morgan": "1.9.0",
"servicebus": "^2.0.10"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/sinon": "^2.3.7",
"mocha": "4.0.1",
"nyc": "11.3.0",
"sinon": "^4.1.1",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"watermarks": {
"lines": [
90,
100
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"reporter": [
"lcov",
"text-summary",
"html"
],
"extension": [
".ts"
],
"exclude": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register"
],
"cache": true,
"report-dir": "./coverage"
}
}