-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.37 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
{
"name": "fastify-bugsnag",
"version": "5.0.1",
"description": "Fastify plugin for Bugsnag",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup-node --tsconfig tsconfig.build.json",
"lint": "ts-standard --verbose | snazzy",
"lint:fix": "ts-standard --fix | snazzy",
"prepublishOnly": "npm run build",
"postversion": "git push --tags && git push origin main && echo \"Successfully published new package version $npm_package_version\"",
"preversion": "npm run lint && npm run test && npm run test:d && npm run build",
"test": "nyc --reporter=lcov ts-mocha",
"test:d": "tsd . -f test/types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZigaStrgar/fastify-bugsnag.git"
},
"files": [
"dist"
],
"keywords": [
"bugsnag",
"crash-logging",
"errors",
"error-logging",
"error-reporting",
"fastify-bugsnag",
"fastify-bugsnag-plugin",
"fastify-error-reporting",
"fastify-plugin"
],
"author": "Žiga Strgar <ziga.strgar@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZigaStrgar/fastify-bugsnag/issues"
},
"homepage": "https://github.com/ZigaStrgar/fastify-bugsnag#readme",
"dependencies": {
"@bugsnag/js": "^8.0.0",
"@bugsnag/node": "^8.0.0",
"fastify-plugin": "^5.0.1"
},
"engines": {
"node": "^20.10.0||^22.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/mocha": "^10.0.3",
"@types/node": "^20.16.9",
"@types/sinon": "^17.0.3",
"fastify": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"snazzy": "^9.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.0",
"ts-standard": "^12.0.0",
"tsd": "^0.31.2",
"tsup": "^8.3.0",
"typescript": "~5.6"
},
"ts-standard": {
"ignore": [
"dist"
],
"files": [
"src/**/*.ts",
"test/**/*.ts",
"tsup.config.ts"
]
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"test/**",
"tsup.config.ts",
"dist"
],
"reporter": [
"lcov"
],
"all": true
},
"tsd": {
"directory": "test/types"
}
}