forked from lifeomic/graphql-resolvers-xray-tracing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@lifeomic/graphql-resolvers-xray-tracing",
"version": "5.0.2",
"description": "A GraphQL middleware to enable X-Ray tracing subsegments for GraphQL resolvers",
"homepage": "https://github.com/lifeomic/graphql-resolvers-xray-tracing#readme",
"bugs": {
"url": "https://github.com/lifeomic/graphql-resolvers-xray-tracing/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/graphql-resolvers-xray-tracing.git"
},
"scripts": {
"lint": "eslint . -f codeframe",
"pretypes": "yarn cleanTypes",
"types": "graphql-codegen",
"pretest": "yarn types",
"test": "nyc ava",
"posttest": "yarn lint && tsc --noEmit",
"coverage": "nyc report --reporter=text-lcov > ./.nyc_output/lcov.info",
"prepublishOnly": "yarn tsc",
"cleanTypes": "rm -rf test/__generated__"
},
"main": "src/traceResolvers.js",
"types": "src/traceResolvers.ts",
"engines": {
"node": ">=10"
},
"keywords": [
"graphql",
"resolvers",
"middleware",
"xray",
"aws"
],
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"devDependencies": {
"@graphql-codegen/cli": "1.2.1",
"@graphql-codegen/typescript": "1.2.1",
"@graphql-toolkit/file-loading": "^0.10.7",
"@lifeomic/eslint-plugin-node": "^2.0.1",
"@types/graphql": "^14.0.7",
"@types/promise-retry": "^1.1.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"ava": "^3.14.0",
"aws-xray-sdk-core": "^3.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.2",
"nock": "^13.0.5",
"nyc": "^15.1.0",
"promise-retry": "^2.0.1",
"sinon": "^9.2.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"dependencies": {
"graphql-middleware": "^4.0.0",
"is-promise": "^4.0.0"
},
"ava": {
"verbose": true,
"files": [
"test/**/*.test.ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"extensions": [
"ts"
]
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"aws-xray-sdk-core": "^2.5.0 || ^3.0.0"
}
}