forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "@bugsnag/plugin-vue",
"version": "6.3.0",
"description": "Vue.js integration for bugsnag-js",
"main": "dist/bugsnag-vue.js",
"browser": "dist/bugsnag-vue.js",
"types": "types/bugsnag-vue.d.ts",
"homepage": "https://www.bugsnag.com/",
"repository": {
"type": "git",
"url": "[email protected]: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 && npm run build:dist:min",
"build:dist": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/index.js --standalone=bugsnag__vue | ../../bin/extract-source-map dist/bugsnag-vue.js",
"build:dist:min": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/index.js --standalone=bugsnag__vue | ../../bin/minify dist/bugsnag-vue.min.js",
"test": "nyc --reporter=lcov -- jasmine '!(node_modules)/**/*.test.js'",
"postversion": "npm run build"
},
"author": "Bugsnag",
"license": "MIT",
"peerDependencies": {
"@bugsnag/js": "*"
},
"devDependencies": {
"@bugsnag/core": "^6.3.0",
"jasmine": "^3.1.0",
"nyc": "^12.0.2",
"vue": "^2.5.8"
}
}