forked from nuxt-community/sentry-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.22 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
{
"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 <[email protected]>"
}
],
"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.2.0",
"@sentry/integrations": "^5.2.0",
"@sentry/node": "^5.2.0",
"@sentry/webpack-plugin": "^1.6.2",
"consola": "^2.6.1",
"deepmerge": "^3.2.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"codecov": "^3.4.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.8.0",
"nuxt-edge": "^2.7.0-25956010.2f5646ba",
"standard-version": "^6.0.1"
},
"publishConfig": {
"access": "public"
}
}