-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 942 Bytes
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
{
"name": "graphql-breadth",
"version": "0.1.0",
"description": "Breadth-first GraphQL executor",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node --test test/**/*.test.ts",
"test:watch": "node --test --watch test/**/*.test.ts",
"bench:tree": "node benchmark/tree.ts",
"bench:list": "node benchmark/list.ts",
"bench:tree-list": "node benchmark/tree_list.ts",
"mem:tree": "NODE_OPTIONS=--expose-gc node benchmark/memory_tree.ts",
"mem:list": "NODE_OPTIONS=--expose-gc node benchmark/memory_list.ts",
"mem:tree-list": "NODE_OPTIONS=--expose-gc node benchmark/memory_tree_list.ts"
},
"files": [
"dist",
"src"
],
"dependencies": {
"graphql": "^16.9.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"dataloader": "^2.2.3",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
}
}