-
-
Notifications
You must be signed in to change notification settings - Fork 579
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "jest-serializer-graphql-schema",
"version": "5.0.0-beta.3",
"description": "Jest serializer for GraphQLSchema objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"prepack": "tsc -b",
"watch": "tsc -b --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"jest",
"graphql",
"schema",
"graphile",
"graphite"
],
"author": "David Baumgold <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://github.com/graphile/crystal/tree/main/utils/jest-serializer-graphql-schema",
"peerDependencies": {
"graphql": ">=15 <17"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"graphql": "16.1.0-experimental-stream-defer.6",
"jest": "^29.6.4",
"pretty-format": "^29.6.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"files": [
"dist"
]
}