-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "graphql-validate-fixtures",
"version": "3.1.4",
"license": "MIT",
"description": "Validates JSON fixtures for GraphQL responses against the associated operations and schema",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"bin": "./bin/graphql-validate-fixtures",
"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-validate-fixtures"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-validate-fixtures/README.md",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"dependencies": {
"chalk": "^4.0.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.2",
"graphql": ">=14.5.0 <16.0.0",
"graphql-config": "^4.3.0",
"graphql-config-utilities": "^4.1.3",
"graphql-tool-utilities": "^3.0.3",
"yargs": "^15.3.1"
},
"files": [
"bin/*",
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/",
"index.js",
"index.mjs",
"index.esnext"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
}
}