-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.79 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
{
"name": "pino-airbrake-transport",
"version": "1.0.1",
"description": "Airbrake Transport for Pino",
"keywords": [
"typescript",
"pino",
"airbrake"
],
"homepage": "https://github.com/enricodeleo/pino-airbrake-transport",
"bugs": "https://github.com/enricodeleo/pino-airbrake-transport/issues",
"author": "Enrico Deleo <[email protected]>",
"repository": "https://github.com/enricodeleo/pino-airbrake-transport",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"engines": {
"node": "> 14"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "node -r ./esbuild-hook ./scripts/setup",
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "node -r ./esbuild-hook ./scripts/build",
"clean": "node -r ./esbuild-hook ./scripts/clean",
"type:dts": "tsc --emitDeclarationOnly",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "ava",
"test:coverage": "nyc ava && nyc report --reporter=html",
"test:setup": "node -r ./esbuild-hook ./scripts/testSetup",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.0.0",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"ava": "^4.3.0",
"cspell": "^6.1.2",
"esbuild": "^0.14.43",
"esbuild-runner": "^2.2.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"nyc": "^15.1.0",
"prettier": "^2.7.0",
"prompts": "^2.4.2",
"semantic-release": "^19.0.3",
"slugify": "^1.6.5",
"source-map-support": "^0.5.21",
"typescript": "^4.7.3"
},
"peerDependencies": {
"pino": "^7.0.0 || ^8.0.0"
},
"volta": {
"node": "16.15.1",
"npm": "8.11.0"
},
"overrides": {
"semver-regex": "3.1.4"
},
"dependencies": {
"@airbrake/browser": "^2.1.7",
"@airbrake/node": "^2.1.7",
"async_hooks": "^1.0.0",
"pino-abstract-transport": "^0.5.0"
}
}