-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
66
67
68
{
"name": "@binden/logger",
"version": "2.0.3",
"description": "A simple logger (based on pino)",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.4"
},
"scripts": {
"build": "tsc",
"build:remove": "rm -rf ./dist",
"ci:all": "npm ci && npm run prettier && npm run eslint && npm run commitlint && npm run docs:build && npm publish --dry-run",
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"docs:build": "typedoc",
"eslint": "eslint **/*.ts",
"install:clean": "npm install",
"postbuild": "prettier -c -w ./dist",
"postdocs:build": "prettier -c -w ./docs",
"postpublish": "npm run build:remove",
"prebuild": "npm run build:remove",
"preinstall:clean": "rm -rf node_modules package-lock.json",
"prepare": "husky",
"prepublishOnly": "npm run build",
"prettier": "prettier -c .",
"prettier:write": "prettier -c -w .",
"preversion": "npm run docs:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binden-js/logger.git"
},
"keywords": [
"logger"
],
"author": "Sergey Bakulin <sergey.bakulin.github@gmail.com>",
"license": "AGPL-3.0-only",
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/binden-js/logger/issues"
},
"homepage": "https://github.com/binden-js/logger#readme",
"dependencies": {
"pino": "^9.5.0"
},
"devDependencies": {
"@binden/commitlint-config": "^2.1.0",
"@binden/semantic-release-config": "^3.0.0",
"@binden/tsconfig": "^2.0.0",
"eslint-config-binden-ts": "^4.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typedoc": "^0.26.8"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "Coinbase Commerce",
"url": "https://commerce.coinbase.com/checkout/eddfb0f7-20e7-4e0d-8e04-232bbdf0b397"
}
}