-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "@ozmap/logger",
"version": "0.2.8",
"description": "DevOZ logger module.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"build:package": "npm run build; [ -r ozmap-logger-*.*.*.tgz ] && rm -f ozmap-logger-*.*.*.tgz; npm pack",
"docs": "jsdoc -c .jsdocrc dist/lib",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watchAll --detectOpenHandles",
"lint": "eslint --ext .js,.ts",
"format": "prettier --write",
"prepare": "husky"
},
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ozmap/ozlogger.git"
},
"keywords": [
"NodeJS",
"Logger",
"Console"
],
"author": "Leandro Schabarum <leandro.schabarum@ozmap.com.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozmap/ozlogger/issues"
},
"homepage": "https://github.com/ozmap/ozlogger#readme",
"devDependencies": {
"@jest/globals": "^30.2.0",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.5",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdoc-plugin-typescript": "^2.2.1",
"listr": "^0.14.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0"
}
}