-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.77 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
{
"name": "mail-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/main.ts",
"test": "jest",
"test-ci": "jest --ci"
},
"author": "",
"license": "ISC",
"dependencies": {
"base-64": "^0.1.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"firebase": "^4.8.1",
"firebase-admin": "^5.7.0",
"firebase-queue": "^1.6.1",
"form-data": "^2.3.1",
"js-yaml": "^3.10.0",
"node-fetch": "^1.7.3",
"swagger-tools": "^0.10.3",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/base-64": "^0.1.2",
"@types/bluebird": "^3.5.19",
"@types/body-parser": "^1.16.8",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.11.0",
"@types/form-data": "^2.2.1",
"@types/jest": "^22.0.1",
"@types/js-yaml": "^3.10.1",
"@types/node": "^8.5.7",
"@types/node-fetch": "^1.6.7",
"@types/swagger-tools": "^0.10.5",
"@types/winston": "^2.3.7",
"jest": "^22.0.4",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^22.0.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*\\.test\\.ts$",
"collectCoverage": true,
"mapCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 40,
"functions": 40,
"lines": 50,
"statements": 40
}
},
"notify": true,
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"reporters": [
"default"
]
}
}