-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 1.83 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/graphql-lazyloader/**/*"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"@types/roarr": "^2.14.3",
"roarr": "^7.7.0"
},
"description": "GraphQL directive that adds Object-level data resolvers.",
"devDependencies": {
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.5.3",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/sinon": "^10.0.6",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"ava": "^3.15.0",
"coveralls": "^3.1.1",
"dataloader": "^2.0.0",
"del-cli": "^4.0.1",
"eslint": "^8.2.0",
"eslint-config-canonical": "^32.36.0",
"express": "^4.17.1",
"graphql": "^15.7.2",
"graphql-middleware": "^6.1.12",
"graphql-request": "^3.6.1",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"nyc": "^15.1.0",
"semantic-release": "^18.0.0",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"graphql",
"directive"
],
"license": "BSD-3-Clause",
"main": "./dist/src/index.js",
"name": "graphql-lazyloader",
"peerDependencies": {
"@graphql-tools/utils": "^8.5.3",
"graphql": "^15.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/graphql-lazyloader"
},
"scripts": {
"build": "del-cli ./dist && tsc",
"lint": "eslint ./src ./test && tsc --noEmit",
"test": "ava --verbose --serial"
},
"typings": "./dist/src/index.d.ts",
"version": "1.0.0"
}