UNPKG

1.97 kBJSONView Raw
1{
2 "name": "@nuxtjs/sentry",
3 "version": "4.5.0",
4 "description": "Sentry module for Nuxt.js",
5 "repository": "nuxt-community/sentry-module",
6 "license": "MIT",
7 "contributors": [
8 {
9 "name": "Diederik van den Burger <diederik@webrelated.nl>"
10 },
11 {
12 "name": "Rafal Chlodnicki (@rchl)"
13 }
14 ],
15 "files": [
16 "lib",
17 "types"
18 ],
19 "main": "lib/module.js",
20 "scripts": {
21 "lint": "eslint --ext .vue,.js,.ts lib test types",
22 "lint:fixture": "eslint --ext .vue,.js --no-ignore 'test/fixture/*/.nuxt/sentry.*'",
23 "release": "release-it",
24 "test:fixture": "jest --runInBand",
25 "test": "yarn lint && yarn test:fixture && yarn lint:fixture",
26 "coverage": "codecov"
27 },
28 "babel": {
29 "env": {
30 "test": {
31 "presets": [
32 [
33 "@babel/preset-env",
34 {
35 "targets": {
36 "node": "current"
37 }
38 }
39 ]
40 ]
41 }
42 }
43 },
44 "dependencies": {
45 "@sentry/browser": "^5.27.3",
46 "@sentry/integrations": "^5.27.3",
47 "@sentry/node": "^5.27.3",
48 "@sentry/webpack-plugin": "^1.13.0",
49 "consola": "^2.15.0",
50 "deepmerge": "^4.2.2"
51 },
52 "devDependencies": {
53 "@babel/core": "^7.12.3",
54 "@babel/preset-env": "^7.12.1",
55 "@nuxt/types": "^2.14.7",
56 "@nuxtjs/eslint-config-typescript": "^4.0.0",
57 "@nuxtjs/module-test-utils": "^1.6.3",
58 "@release-it/conventional-changelog": "^2.0.0",
59 "@types/consola": "^2.2.5",
60 "@types/deepmerge": "^2.2.0",
61 "@types/jest": "^26.0.15",
62 "@types/node": "^14.14.7",
63 "@types/request-promise-native": "^1.0.17",
64 "babel-core": "^7.0.0-bridge.0",
65 "babel-eslint": "^10.1.0",
66 "babel-jest": "^26.6.3",
67 "codecov": "^3.8.1",
68 "eslint": "^7.13.0",
69 "jest": "^26.6.3",
70 "nuxt": "^2.14.7",
71 "release-it": "^14.2.1",
72 "typescript": "^4.0.5"
73 },
74 "publishConfig": {
75 "access": "public"
76 },
77 "types": "types/index.d.ts"
78}