-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "@digipolis/request-log",
"version": "0.6.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",
"devDependencies": {
"@eslint/js": "^9.7.0",
"eslint-plugin-mocha": "^10.4.3",
"axios": "^1.7.2",
"c8": "^10.1.2",
"chai": "^4.4.1",
"chai-json-schema": "^1.5.1",
"eslint": "^9.7.0",
"express": "^4.19.2",
"globals": "^15.8.0",
"mocha": "^10.6.0",
"sinon": "^18.0.0"
},
"dependencies": {
"@digipolis/log": "^1.1.0"
}
}