-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.58 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
{
"name": "hinout",
"version": "2.0.0",
"description": "Log outbound and inbound HTTP requests from your application",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "franck.romano@protonmail.com",
"repository": {
"type": "git",
"url": "https://github.com/franck-romano/hinout.git"
},
"license": "MIT",
"files": [
"build/**/*"
],
"scripts": {
"lint": "gts check",
"lint:fix": "gts fix",
"compile": "tsc -p .",
"test": "mocha -r ts-node/register tests/*test.ts",
"test:watch": "mocha -r ts-node/register tests/*test.ts --watch --watch-extensions ts",
"prepare": "yarn compile"
},
"keywords": [
"logging",
"inbound",
"outbound",
"http",
"https",
"tracer"
],
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"chai": "4.2.0",
"dirty-chai": "2.0.1",
"express": "4.17.1",
"gts": "3.0.3",
"mocha": "8.2.1",
"nock": "13.0.1",
"pre-commit": "1.2.2",
"prettier": "2.2.1",
"sinon": "9.2.2",
"sinon-chai": "3.5.0",
"ts-node": "9.1.1",
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "14.14.19",
"@types/sinon": "9.0.4",
"@types/sinon-chai": "3.2.2",
"@types/supertest": "2.0.8",
"typescript": "4.5.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120,
"tabWidth": 2
},
"mocha": {
"diff": true,
"extension": [
"ts"
],
"opts": false,
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"exit": true
}
}