-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1003 Bytes
/
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
{
"name": "express-logging-json",
"version": "0.0.1",
"description": "A JSON logging helper for Express",
"main": "index.js",
"scripts": {
"test": "mocha test",
"tdd": "mocha test --watch",
"lint": "eslint . test",
"types": "tsc"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/openrm/express-logging-json.git"
},
"keywords": [
"express",
"logger",
"logging",
"json"
],
"author": "Open Room Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/openrm/express-logging-json/issues"
},
"homepage": "https://github.com/openrm/express-logging-json#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"body-parser": "^1.19.2",
"cookie-parser": "^1.4.6",
"eslint": "^8.12.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"mocha": "^9.2.2",
"supertest": "^6.2.2",
"typescript": "^4.8.4"
},
"engines": {
"node": ">= 12"
}
}