-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"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"
},
"author": "Matic Zavadlal <[email protected]>",
"dependencies": {
"raven": "^2.6.2"
},
"devDependencies": {
"@types/node": "10.1.4",
"@types/raven": "2.5.1",
"graphql": "0.13.2",
"graphql-middleware": "1.3.3",
"prettier": "1.12.1",
"prettier-check": "2.0.0",
"rimraf": "2.6.2",
"semantic-release": "15.6.3",
"tslint": "5.10.0",
"tslint-config-prettier": "1.13.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.8.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maticzav/graphql-middleware-sentry.git"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0",
"graphql-middleware": "^1.3.2"
}
}