-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
62
63
64
65
{
"name": "seek-koala",
"version": "0.0.0-semantically-released",
"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,
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map"
],
"scripts": {
"build": "skuba build",
"format": "skuba format",
"lint": "skuba lint",
"release": "yarn build && skuba release",
"test": "skuba test",
"test:ci": "skuba test --coverage"
},
"dependencies": {
"http-errors": "^1.8.0"
},
"devDependencies": {
"@koa/router": "12.0.2",
"@types/koa": "2.15.0",
"@types/koa__router": "12.0.4",
"@types/node": "20.17.12",
"@types/supertest": "6.0.2",
"hot-shots": "10.2.1",
"koa": "2.15.4",
"skuba": "9.1.0",
"supertest": "7.0.0"
},
"peerDependencies": {
"hot-shots": "5.x || 6.x || 7.x || 8.x || 9.x || 10.x",
"koa": "2"
},
"peerDependenciesMeta": {
"hot-shots": {
"optional": true
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=14.17"
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "9.1.0"
}
}