-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.62 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.62 KB
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
62
63
64
65
66
67
68
69
70
71
72
{
"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": "ruipmarinho@gmail.com",
"url": "https://github.com/ruimarinho"
},
"contributors": [
{
"name": "Miguel Martins",
"email": "me@kurayama.net",
"url": "https://github.com/kurayama"
},
{
"name": "Nuno Sousa",
"email": "nunofgs@gmail.com",
"url": "https://github.com/nunofgs"
}
],
"repository": {
"type": "git",
"url": "https://github.com/uphold/koa-requestid.git"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"release": "release-it",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage"
},
"dependencies": {},
"devDependencies": {
"@fastify/pre-commit": "^2.2.1",
"@uphold/github-changelog-generator": "4.0.2",
"eslint": "~9.39.2",
"eslint-config-uphold": "^6.7.2",
"koa": "^3.1.1",
"prettier": "^3.7.4",
"release-it": "^19.2.2",
"supertest": "^7.1.4"
},
"engines": {
"node": ">=20"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20"
},
"packageManager": {
"name": "yarn",
"version": "^1.22.22",
"onFail": "warn"
}
},
"pre-commit": [
"lint"
]
}