forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.19 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
{
"name": "@bugsnag/browser",
"version": "7.0.0",
"main": "dist/bugsnag.js",
"types": "dist/types/bugsnag.d.ts",
"description": "Bugsnag error reporter for browser JavaScript",
"homepage": "https://www.bugsnag.com/",
"repository": {
"type": "git",
"url": "[email protected]:bugsnag/bugsnag-js.git"
},
"browser": {
"dist/types/bugsnag": "./dist/bugsnag.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"size": "./bin/size",
"clean": "rm -fr dist && mkdir dist",
"bundle-types": "../../bin/bundle-types bugsnag",
"build": "npm run clean && npm run build:dist && npm run build:dist:min && npm run bundle-types",
"build:dist": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/notifier.js --standalone=Bugsnag | ../../bin/extract-source-map dist/bugsnag.js",
"build:dist:min": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/notifier.js --standalone=Bugsnag | ../../bin/minify dist/bugsnag.min.js",
"test:types": "jasmine 'types/**/*.test.js'",
"cdn-upload": "./bin/cdn-upload",
"postversion": "npm run build"
},
"author": "Bugsnag",
"license": "MIT",
"devDependencies": {
"@bugsnag/core": "^7.0.0",
"@bugsnag/delivery-x-domain-request": "^7.0.0",
"@bugsnag/delivery-xml-http-request": "^7.0.0",
"@bugsnag/plugin-browser-context": "^7.0.0",
"@bugsnag/plugin-browser-device": "^7.0.0",
"@bugsnag/plugin-browser-request": "^7.0.0",
"@bugsnag/plugin-browser-session": "^7.0.0",
"@bugsnag/plugin-client-ip": "^7.0.0",
"@bugsnag/plugin-console-breadcrumbs": "^7.0.0",
"@bugsnag/plugin-inline-script-content": "^7.0.0",
"@bugsnag/plugin-interaction-breadcrumbs": "^7.0.0",
"@bugsnag/plugin-navigation-breadcrumbs": "^7.0.0",
"@bugsnag/plugin-network-breadcrumbs": "^7.0.0",
"@bugsnag/plugin-simple-throttle": "^7.0.0",
"@bugsnag/plugin-strip-query-string": "^7.0.0",
"@bugsnag/plugin-window-onerror": "^7.0.0",
"@bugsnag/plugin-window-unhandled-rejection": "^7.0.0",
"cloudfront": "^0.4.1",
"jasmine": "^3.1.0",
"knox": "^0.9.2",
"mime": "1.4.1",
"nyc": "^12.0.2",
"semver": "^5.5.1",
"typescript": "^3.7.5"
}
}