-
Notifications
You must be signed in to change notification settings - Fork 253
/
Copy pathpackage.json
37 lines (37 loc) · 901 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-vue",
"version": "8.1.1",
"description": "Vue.js integration for bugsnag-js",
"main": "dist/bugsnag-vue.js",
"browser": "dist/bugsnag-vue.js",
"types": "types/bugsnag-plugin-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 && ../../bin/bundle src/index.js --standalone=BugsnagPluginVue | ../../bin/extract-source-map dist/bugsnag-vue.js"
},
"author": "Bugsnag",
"license": "MIT",
"devDependencies": {
"@bugsnag/core": "^8.1.1"
},
"peerDependencies": {
"@bugsnag/core": "^8.0.0"
},
"peerDependenciesMeta": {
"@bugsnag/core": {
"optional": true
}
}
}