forked from nuxt-community/sentry-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.04 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
{
"name": "@nuxtjs/sentry",
"version": "3.1.0",
"description": "Sentry module for Nuxt.js",
"repository": "nuxt-community/sentry-module",
"license": "MIT",
"contributors": [
{
"name": "Diederik van den Burger <[email protected]>"
}
],
"files": [
"lib",
"types"
],
"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.11.2",
"@sentry/integrations": "^5.11.1",
"@sentry/node": "^5.11.2",
"@sentry/webpack-plugin": "^1.9.3",
"@sentry/types": "^5.11.0",
"consola": "^2.11.3",
"deepmerge": "^4.2.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"codecov": "^3.6.2",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"nuxt-edge": "^2.11.1-26337612.502ab54",
"standard-version": "^7.1.0"
},
"publishConfig": {
"access": "public"
},
"types": "types/index.d.ts"
}