forked from tomer-yechiel/pino-sentry-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.61 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
105
106
107
108
109
{
"name": "@blacklab/pino-sentry-transport",
"version": "1.2.4",
"description": "Sentry Transport for Pino",
"keywords": [
"typescript",
"pino",
"Sentry"
],
"homepage": "https://github.com/gooftroop/pino-sentry-transport#readme",
"bugs": "https://github.com/gooftroop/pino-sentry-transport/issues",
"author": "Tomer Yechiel, Brandon Webb",
"repository": {
"type": "git",
"url": "git+https://github.com/gooftroop/pino-sentry-transport.git"
},
"exports": {
"./browser": {
"import": "./dist/esm/browser.js",
"require": "./dist/cjs/browser.cjs",
"types": "./dist/esm/browser.d.ts"
},
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/esm/index.d.ts"
}
},
"type": "module",
"license": "MIT",
"lint-staged": {
"*.(t|j)s(x)?": "npm run lint && npm run format"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run make",
"clean": "rimraf dist",
"format": "prettier-eslint \"src/**/*\" --write",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "is-ci || sh ./scripts/prepare.sh",
"make": "node ./scripts/build.mjs",
"test": "npm run build && vitest",
"test:coverage": "vitest run --coverage",
"ts:check": "tsc --noEmit",
"ts:emit": "tsc --emitDeclarationOnly ",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@sentry/browser": "^7.15.0",
"@sentry/node": "^7.15.0",
"@sentry/types": "^7.15.0",
"@types/lodash.get": "^4.4.7",
"@types/node": "18.11.0",
"@types/readable-stream": "^2.3.14",
"@types/split2": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"commitlint": "^17.1.2",
"cspell": "^6.12.0",
"esbuild": "^0.15.11",
"esbuild-node-externals": "^1.5.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"pino": "^8.6.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"readable-stream": "^4.2.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"split2": "^4.1.0",
"typescript": "^4.8.4",
"vite-tsconfig-paths": "^3.5.1",
"vitest": "^0.24.3"
},
"peerDependencies": {
"@sentry/browser": "^7.15.0",
"@sentry/node": "^7.0.0",
"@sentry/types": "^7.15.0",
"lodash.get": "^4.4.2",
"pino": "^7.0.0 || ^8.0.0",
"readable-stream": "^4.2.0",
"split2": "^4.1.0"
},
"volta": {
"node": "18.7.0"
}
}