-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
85 lines (85 loc) · 1.98 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
{
"name": "graphql-middleware",
"description": "GraphQL Middleware done right!",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs",
"types": "./dist/*.d.ts"
}
},
"publishConfig": {
"directory": "dist"
},
"author": "Matic Zavadlal <[email protected]>",
"dependencies": {
"@graphql-tools/delegate": "^8.8.1",
"@graphql-tools/schema": "^8.5.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.182",
"@types/node":"^18.8.3",
"apollo-server": "^3.10.2",
"axios": "^0.27.2",
"bob-esbuild": "^1.3.0",
"bob-esbuild-cli": "^1.0.1",
"codecov": "^3.8.3",
"graphql": "^16.6.0",
"husky": "^6.0.0",
"iterall": "^1.3.0",
"jest": "^26.6.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"scripts": {
"clean": "rimraf dist",
"compile": "bob-esbuild build",
"coverage": "codecov",
"test": "jest",
"prepublishOnly": "npm run compile"
},
"files": [
"dist"
],
"release": {
"branch": "master"
},
"homepage": "https://github.com/maticzav/graphql-middleware",
"repository": {
"type": "git",
"url": "https://github.com/maticzav/graphql-middleware.git"
},
"bugs": {
"url": "https://github.com/maticzav/graphql-middleware/issues"
},
"keywords": [
"graphql",
"middleware",
"schema",
"resolvers",
"server",
"yoga"
],
"license": "MIT"
}