This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
71 lines (71 loc) · 1.65 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
{
"name": "@shopify/graphql-testing",
"version": "8.2.1",
"license": "MIT",
"description": "Utilities to create mock GraphQL factories",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"typesVersions": {
"*": {
"matchers": [
"./build/ts/matchers/index.d.ts"
]
}
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/graphql-testing"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-testing/README.md",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"graphql": ">=14.5.0 <17.0.0",
"jest-matcher-utils": "^26.6.2"
},
"devDependencies": {
"graphql-typed": "^2.3.0",
"@apollo/client": "^3.5.8"
},
"peerDependencies": {
"@apollo/client": ">=3.5.8 || <4.0.0"
},
"files": [
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/",
"index.js",
"index.mjs",
"index.esnext",
"matchers.js",
"matchers.mjs",
"matchers.esnext"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./matchers": {
"types": "./build/ts/matchers/index.d.ts",
"esnext": "./matchers.esnext",
"import": "./matchers.mjs",
"require": "./matchers.js"
},
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
}
}