-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.78 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
{
"name": "@yaacovcr/stitch",
"version": "0.0.1",
"description": "Tools for Stitching GraphQL Schemas.",
"private": true,
"license": "MIT",
"type": "module",
"typesVersions": {
">=4.4.0": {
"*": [
"*"
]
}
},
"sideEffects": false,
"homepage": "https://github.com/yaacovCR/stitch",
"bugs": {
"url": "https://github.com/yaacovCR/stitch/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yaacovCR/stitch.git"
},
"keywords": [
"graphql",
"stitching",
"stitch",
"subschema",
"subgraph",
"superschema",
"supergraph",
"subgraph",
"compose",
"composition"
],
"engines": {
"node": "^18.14.0 || >=19.7.0"
},
"scripts": {
"benchmark": "node --loader resources/benchmark.ts",
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling",
"lint": "eslint --rulesdir resources/eslint-internal-rules --cache --max-warnings 0 .",
"check": "tsc --pretty",
"testonly": "mocha --full-trace 'src/**/__tests__/**/*-test.ts'",
"testonly:cover": "c8 npm run testonly",
"testonly:watch": "npm run testonly -- --watch",
"prettier": "prettier --cache --cache-strategy metadata --write --list-different .",
"prettier:check": "prettier --cache --cache-strategy metadata --check .",
"check:spelling": "cspell --cache --no-progress '**/*'",
"build:npm:dual": "node --loader ts-node/esm resources/build-npm-dual.ts",
"build:npm:esm-only": "node --loader ts-node/esm resources/build-npm-esm-only.ts",
"build:deno": "node --loader ts-node/esm resources/build-deno.ts",
"diff:npm": "node --loader ts-node/esm resources/diff-npm-package.ts",
"changeset": "changeset add",
"changeset:version": "changeset version && npm install --package-lock-only",
"changeset:publish": "node --loader ts-node/esm resources/prepare-for-publish.ts && cd publishWorkspaceConfig && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@prettier/sync": "^0.5.2",
"@types/chai": "4.3.16",
"@types/mocha": "10.0.6",
"@types/node": "20.14.2",
"@types/prettier": "2.7.3",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"c8": "10.0.0",
"chai": "5.1.1",
"clsx": "2.1.1",
"cspell": "8.8.4",
"eslint": "8.54.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"mocha": "10.4.0",
"prettier": "3.3.1",
"sinon": "^18.0.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"publishConfig": {
"tag": "alpha"
},
"dependencies": {
"@repeaterjs/repeater": "^3.0.6",
"graphql": "^17.0.0-alpha.3"
}
}