forked from nuxt-community/sentry-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.25 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
{
"name": "@nuxtjs/sentry",
"version": "2.3.0",
"description": "Sentry module for Nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Diederik van den Burger <[email protected]>"
}
],
"main": "lib/sentry.js",
"repository": "https://github.com/nuxt-community/sentry-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"lib",
"test"
]
},
"dependencies": {
"@sentry/browser": "^4.5.1",
"@sentry/node": "^4.5.1",
"consola": "^2.3.2"
},
"peerDependencies": {
"nuxt": "<1.0.0 || >1.2.1"
},
"devDependencies": {
"@sentry/webpack-plugin": "^1.6.2",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0"
}
}