forked from toboid/express-correlation-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "express-correlation-id",
"version": "1.1.1",
"description": "Express middleware to correlate requests across http calls",
"main": "index.js",
"files": [
"index.js",
"test",
"examples"
],
"scripts": {
"test": "ava",
"coverage": "nyc --check-coverage --lines 100 npm test",
"lint": "eslint index.js test/*.js examples/*.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toboid/express-correlation-id.git"
},
"keywords": [
"express",
"logging",
"correlation",
"debug"
],
"author": "toboid",
"license": "MIT",
"bugs": {
"url": "https://github.com/toboid/express-correlation-id/issues"
},
"homepage": "https://github.com/toboid/express-correlation-id#readme",
"dependencies": {
"correlation-id": "^2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.0.0",
"eslint-config-toboid": "^2.0.0",
"express": "^4.14.0",
"nyc": "^11.0.2",
"supertest": "^3.0.0"
}
}