-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "koa-requestid",
"version": "2.2.1",
"description": "A middleware that adds a request id to a koa application",
"main": "./index.js",
"types": "./index.d.ts",
"keywords": [
"koa",
"request",
"request-id",
"requestId"
],
"homepage": "https://github.com/uphold/koa-requestid/",
"bugs": "https://github.com/uphold/koa-requestid/issues",
"license": "MIT",
"author": {
"name": "Rui Marinho",
"email": "[email protected]",
"url": "https://github.com/ruimarinho"
},
"contributors": [
{
"name": "Miguel Martins",
"email": "[email protected]",
"url": "https://github.com/kurayama"
},
{
"name": "Nuno Sousa",
"email": "[email protected]",
"url": "https://github.com/nunofgs"
}
],
"repository": {
"type": "git",
"url": "https://github.com/uphold/koa-requestid.git"
},
"scripts": {
"lint": "eslint .",
"release": "release-it",
"test": "jest --coverage --env=node"
},
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^3.2.0",
"eslint": "~8.20.0",
"eslint-config-uphold": "^4.0.0",
"jest": "^29.0.2",
"koa": "^2.13.4",
"pre-commit": "^1.2.2",
"release-it": "^17.0.0",
"supertest": "^6.2.4"
},
"engines": {
"node": ">=8"
},
"pre-commit": [
"lint"
]
}