-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 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
{
"name": "graphql-api-koa",
"version": "9.1.3",
"description": "GraphQL execution and error handling middleware written from scratch for Koa.",
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "[email protected]",
"url": "https://jaydenseric.com"
},
"repository": "github:jaydenseric/graphql-api-koa",
"homepage": "https://github.com/jaydenseric/graphql-api-koa#readme",
"bugs": "https://github.com/jaydenseric/graphql-api-koa/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"keywords": [
"graphql",
"api",
"koa",
"esm",
"mjs"
],
"files": [
"assertKoaContextRequestGraphQL.mjs",
"checkGraphQLSchema.mjs",
"checkGraphQLValidationRules.mjs",
"checkOptions.mjs",
"errorHandler.mjs",
"execute.mjs",
"GraphQLAggregateError.mjs"
],
"sideEffects": false,
"exports": {
"./errorHandler.mjs": "./errorHandler.mjs",
"./execute.mjs": "./execute.mjs",
"./GraphQLAggregateError.mjs": "./GraphQLAggregateError.mjs",
"./package.json": "./package.json"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"graphql": "^16.0.0"
},
"dependencies": {
"@types/http-errors": "^2.0.1",
"@types/koa": "^2.13.5",
"http-errors": "^2.0.0"
},
"devDependencies": {
"@types/koa-bodyparser": "^4.3.10",
"@types/node": "^18.11.9",
"coverage-node": "^8.0.0",
"eslint": "^8.27.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"graphql": "^16.6.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"test-director": "^10.0.0",
"typescript": "^4.8.4"
},
"scripts": {
"eslint": "eslint .",
"prettier": "prettier -c .",
"types": "tsc -p jsconfig.json",
"tests": "coverage-node test.mjs",
"test": "npm run eslint && npm run prettier && npm run types && npm run tests",
"prepublishOnly": "npm test"
}
}