forked from mponizil/graphql-middleware-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
55
56
57
{
"name": "graphql-middleware-sentry",
"description": "Sentry plugin for GraphQL Middleware",
"version": "0.0.0-semantic-release",
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"prepublish": "npm run test",
"build": "rimraf dist && tsc -d",
"lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"test": "npm run lint && npm run build",
"semantic-release": "semantic-release"
},
"contributors": [
{
"name": "Matic Zavadlal",
"email": "[email protected]",
"url": "https://github.com/maticzav"
},
{
"name": "Bruno Scheufler",
"email": "[email protected]",
"url": "https://github.com/BrunoScheufler"
}
],
"devDependencies": {
"@sentry/node": "5.5.0",
"@types/lodash": "4.14.136",
"@types/node": "12.6.8",
"graphql": "14.4.2",
"graphql-middleware": "3.0.3",
"prettier": "1.18.2",
"prettier-check": "2.0.0",
"rimraf": "2.6.3",
"semantic-release": "15.13.18",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.5.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BrunoScheufler/graphql-middleware-sentry.git"
},
"peerDependencies": {
"@sentry/node": "^5.2.0",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-middleware": "^2.0.0 || ^3.0.0"
}
}