-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "bunyamin",
"version": "1.0.0",
"description": "Bunyan-based logger for Node.js supporting Trace Event format",
"license": "MIT",
"keywords": [
"bunyan",
"logger",
"log",
"trace",
"trace-event",
"perfetto",
"perfetto-ui"
],
"authors": [
"Yaroslav Serhieiev <[email protected]>"
],
"repository": {
"url": "github:wix-incubator/bunyamin"
},
"engines": {
"node": ">=14.18.2"
},
"type": "commonjs",
"main": "./dist/index.umd.js",
"umd:main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.umd.js",
"import": "./dist/index.mjs",
"default": "./dist/index.umd.js"
},
"files": [
"src",
"dist",
"!**/__mocks__",
"!**/__tests__",
"!**/__utils__",
"!**/*.test.*"
],
"scripts": {
"prepare": "husky install",
"clean": "git clean -xdf",
"build": "microbundle src/index.ts --target node --format esm,umd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/bunyan": "^1.8.8",
"@types/stream-json": "^1.7.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"bunyan": "^1.8.15",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-ecmascript-compat": "^3.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-n": "^17.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"tempy": "^1.0.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.25.13",
"typescript": "5.2.x"
},
"dependencies": {
"@flatten-js/interval-tree": "^1.1.2",
"multi-sort-stream": "^1.0.4",
"stream-json": "^1.7.5",
"trace-event-lib": "^1.3.1"
},
"peerDependencies": {
"@types/bunyan": "^1.8.8",
"bunyan": "^1.8.15 || ^2.0.0"
},
"peerDependenciesMeta": {
"bunyan": {
"optional": true
},
"@types/bunyan": {
"optional": true
}
},
"browserslist": [
"node 14"
]
}