-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "@aptoma/hapi-log",
"author": "Martin Jonsson <martin@aptoma.com>",
"version": "12.0.0",
"description": "Hapi Log Plugin",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"bin": {
"pretty-hapi-log": "./dist/pretty.js"
},
"repository": {
"type": "git",
"url": "git@github.com:aptoma/hapi-log.git"
},
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"pretest": "npm run build",
"test": "npm run lint && npm run typecheck && node --test 'test/**/*.test.js'",
"prepublishOnly": "npm test",
"release": "npm test && release-it -n -i patch",
"release:minor": "npm test && release-it -n -i minor",
"release:major": "npm test && release-it -n -i major",
"bench": "npm run build && node benchmarks/index.js 2>/dev/null"
},
"engines": {
"node": ">=22.0.0"
},
"license": "UNLICENSED",
"peerDependencies": {
"@hapi/hapi": ">=21"
},
"dependencies": {
"fast-safe-stringify": "^2.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@hapi/hapi": "^21.4.3",
"@types/node": "^24.12.0",
"auto-changelog": "^2.5.0",
"fastbench": "^1.0.1",
"joi": "^18.0.2",
"release-it": "^19.0.5",
"typescript": "^5.9.3"
}
}