forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1000 Bytes
/
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
{
"name": "@bugsnag/plugin-restify",
"version": "7.9.0",
"main": "dist/bugsnag-restify.js",
"types": "types/bugsnag-restify.d.ts",
"description": "@bugsnag/js error handling middleware for Restify web servers",
"homepage": "https://www.bugsnag.com/",
"repository": {
"type": "git",
"url": "git@github.com:bugsnag/bugsnag-js.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"types"
],
"scripts": {
"clean": "rm -fr dist && mkdir dist",
"build": "npm run clean && npm run build:dist",
"build:dist": "../../bin/bundle src/restify.js --node --exclude=iserror --standalone=bugsnag-restify | ../../bin/extract-source-map dist/bugsnag-restify.js",
"postversion": "npm run build"
},
"author": "Bugsnag",
"license": "MIT",
"peerDependencies": {
"@bugsnag/core": "^7.0.0"
},
"devDependencies": {
"@bugsnag/core": "^7.9.0",
"@types/restify": "^8.4.2"
},
"dependencies": {
"iserror": "^0.0.2"
}
}