-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
86 lines (86 loc) · 2.66 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
{
"name": "@honeybadger-io/vue",
"version": "6.2.0",
"license": "MIT",
"description": "Honeybadger Vue.js client",
"author": "Jason Truesdell <jason@yuzuten.com> (https://github.com/JasonTrue)",
"bugs": {
"url": "https://github.com/honeybadger-io/honeybadger-js/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/honeybadger-io/honeybadger-js.git"
},
"keywords": [
"vue",
"vuejs",
"honeybadger"
],
"main": "dist/honeybadger-vue.umd.js",
"module": "dist/honeybadger-vue.umd.js",
"unpkg": "dist/honeybadger-vue.min.js",
"files": [
"dist",
"src",
"honeybadger-vue.d.ts"
],
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/vue",
"scripts": {
"unit": "jest --coverage --env=jsdom",
"e2e": "node test/e2e/runner.js",
"tsd": "npx tsd",
"test": "npm run tsd && npm run unit",
"test:all": "npm run tsd && npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src examples test/unit",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg & npm run build:unpkg-minify",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/honeybadger-vue.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/honeybadger-vue.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/honeybadger-vue.js",
"build:unpkg-minify": "MINIFY=true rollup --config rollup.config.js --format iife --file dist/honeybadger-vue.min.js",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@honeybadger-io/js": "^6.10.1",
"@rollup/plugin-replace": "^5.0.2",
"@vue/compiler-sfc": "^3.2.37",
"@vue/test-utils": "^2.0.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"browser-resolve": "^2.0.0",
"eslint": "^8.20.0",
"eslint-plugin-vue": "^9.2.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"rollup": "^2.77.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-conditional": "^3.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sinon": "^14.0.0",
"tsd": "^0.23.0",
"vue": "^3.2.37",
"vue-jest": "^5.0.0-alpha.10"
},
"peerDependencies": {
"@honeybadger-io/js": "^6.2.0",
"vue": "2.x || 3.x"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"types": "./honeybadger-vue.d.ts",
"tsd": {
"compilerOptions": {
"lib": [
"DOM"
]
}
},
"engines": {
"node": ">=14"
}
}