forked from nuxt-community/sentry-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 987 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 987 Bytes
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
{
"name": "@nuxtjs/sentry",
"version": "3.0.0",
"description": "Sentry module for Nuxt.js",
"repository": "nuxt-community/sentry-module",
"license": "MIT",
"contributors": [
{
"name": "Diederik van den Burger <diederik@webrelated.nl>"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"lint": "eslint --ext .vue,.js lib test",
"release": "standard-version && git push --follow-tags && npm publish",
"test": "npm run lint && jest"
},
"dependencies": {
"@sentry/browser": "^5.6.3",
"@sentry/integrations": "^5.6.1",
"@sentry/node": "^5.6.2",
"@sentry/webpack-plugin": "^1.8.1",
"consola": "^2.10.1",
"deepmerge": "^4.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.1.2",
"codecov": "^3.6.1",
"eslint": "^5.16.0",
"jest": "^24.9.0",
"nuxt-edge": "^2.10.0-26169130.0f8428fa",
"standard-version": "^7.0.0"
},
"publishConfig": {
"access": "public"
}
}