-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 915 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": "exp-correlator",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "[email protected]:BonnierNews/exp-correlator.git"
},
"engines": {
"node": ">=14.17"
},
"description": "Correlation-id handler and Express middleware",
"main": "index.js",
"scripts": {
"test": "mocha && eslint . && depsane --ignores 'mocha*,eslint*,depsane'",
"lint": "eslint ."
},
"author": "Bonnier News",
"keywords": [
"express",
"middleware",
"correlation-id",
"correlation"
],
"license": "MIT",
"files": [
"lib/",
"index.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"devDependencies": {
"body-parser": "^1.19.1",
"chai": "^4.3.4",
"depsane": "^0.0.4",
"eslint": "^8.3.0",
"eslint-config-exp": "^0.1.1",
"express": "^4.17.1",
"mocha": "^9.1.2",
"mocha-cakes-2": "^3.3.0",
"supertest": "^6.1.6"
}
}