-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 Bytes
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
{
"name": "@digipolis/request-log",
"version": "1.1.0",
"keywords": [
"digipolis",
"antwerpen",
"log",
"logger",
"request-logger"
],
"description": "Log express and external Requests in digipolis format",
"main": "lib/index.js",
"scripts": {
"start": "node ./example/index.js",
"test": "mocha ./test --exit && npm run lint",
"lint": "eslint \"**/*.js\"",
"coverage": "c8 --reporter=lcovonly --reporter=html --reporter=text npm test && eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digipolisantwerp/request_log_module_nodejs.git"
},
"author": "Olivier Van den Mooter",
"license": "MIT",
"dependencies": {
"@digipolis/log": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint-plugin-mocha": "^11.2.0",
"c8": "^10.1.3",
"jsonschema": "^1.5.0",
"express": "^5.2.1",
"globals": "^17.3.0",
"mocha": "^11.7.5",
"sinon": "^21.0.1"
}
}