-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.98 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.98 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "seek-koala",
"version": "8.0.0",
"private": false,
"description": "Koa add-ons for SEEK-standard tracing, logging and metrics",
"homepage": "https://github.com/seek-oss/koala#readme",
"bugs": {
"url": "https://github.com/seek-oss/koala/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/koala.git"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"@seek/koala/source": "./src/index.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.cts",
"files": [
"lib"
],
"scripts": {
"build": "skuba build-package",
"format": "skuba format",
"lint": "skuba lint",
"release": "pnpm build && changeset publish",
"stage": "changeset version && pnpm format",
"test": "skuba test",
"test:ci": "skuba test --coverage"
},
"dependencies": {
"http-errors": "^1.8.0"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@changesets/get-github-info": "0.7.0",
"@koa/router": "15.3.1",
"@types/koa": "3.0.1",
"@types/koa__router": "12.0.5",
"@types/node": "22.19.12",
"@types/supertest": "6.0.3",
"hot-shots": "14.0.0",
"koa": "3.1.2",
"skuba": "15.0.0",
"supertest": "7.2.2"
},
"peerDependencies": {
"hot-shots": "5.x || 6.x || 7.x || 8.x || 9.x || 10.x || 11.x || 12.x || 13.x || 14.x",
"koa": "2 || 3"
},
"peerDependenciesMeta": {
"hot-shots": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.14.0"
},
"publishConfig": {
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
}
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "15.0.0"
}
}