This repository was archived by the owner on Jul 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 KB
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
{
"name": "@dreamit/graphql-testing",
"version": "1.0.2",
"description": "Test helper and functions to test GraphQL logic.",
"scripts": {
"build": "tsup-node",
"check": "tsc --noEmit --pretty",
"checkformat": "prettier --check .",
"format": "prettier --cache --write .",
"lint": "oxlint -c .oxlintrc.json",
"lintfix": "oxlint -c .oxlintrc.json --fix",
"mutationtest": "stryker run",
"mutationtestCI": "stryker run --incremental --incrementalFile stryker-incremental.json",
"prepack": "npm run build",
"test": "vitest run --coverage"
},
"type": "module",
"main": "build/index.cjs",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreamit-de/graphql-testing.git"
},
"keywords": [
"GraphQL",
"server"
],
"author": "dreamIT",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreamit-de/graphql-testing/issues"
},
"homepage": "https://github.com/dreamit-de/graphql-testing#readme",
"devDependencies": {
"@fast-check/vitest": "0.2.2",
"@sgohlke/stryker-log-ignorer": "2.0.3",
"@stryker-mutator/vitest-runner": "9.0.1",
"@swc/core": "1.12.11",
"@types/content-type": "1.1.9",
"@types/node": "24.0.12",
"@vitest/coverage-v8": "3.2.4",
"fast-check": "4.2.0",
"oxlint": "1.6.0",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.1.0",
"tsup": "8.5.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"peerDependencies": {
"@dreamit/funpara": "^1.0.0",
"@dreamit/graphql-server-base": "^3.0.0",
"graphql": "^16.0.0"
},
"engines": {
"node": ">=v6.13.0"
},
"overrides": {
"esbuild": "0.25.1"
}
}