forked from graphql/graphql-http
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "graphql-http",
"version": "1.7.0",
"description": "Simple, pluggable, zero-dependency, GraphQL over HTTP Protocol compliant server and client",
"keywords": [
"graphql",
"client",
"relay",
"express",
"apollo",
"server",
"http",
"transport",
"observables",
"fastify"
],
"author": "Denis Badurina <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/graphql/graphql-http#readme",
"repository": {
"type": "git",
"url": "https://github.com/graphql/graphql-http.git"
},
"engines": {
"node": ">=12"
},
"packageManager": "[email protected]",
"main": "lib/index.js",
"module": "lib/index.mjs",
"browser": "umd/graphql-http.js",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"browser": "./umd/graphql-http.js"
},
"./lib/use/fetch": {
"types": "./lib/use/fetch.d.ts",
"require": "./lib/use/fetch.js",
"import": "./lib/use/fetch.mjs"
},
"./lib/use/node": {
"types": "./lib/use/node.d.ts",
"require": "./lib/use/node.js",
"import": "./lib/use/node.mjs"
},
"./lib/use/express": {
"types": "./lib/use/express.d.ts",
"require": "./lib/use/express.js",
"import": "./lib/use/express.mjs"
},
"./lib/use/fastify": {
"types": "./lib/use/fastify.d.ts",
"require": "./lib/use/fastify.js",
"import": "./lib/use/fastify.mjs"
},
"./package.json": "./package.json"
},
"types": "lib/index.d.ts",
"files": [
"lib",
"umd",
"README.md",
"LICENSE.md"
],
"sideEffects": [
"umd/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"gendocs": "typedoc --options typedoc.js src/",
"lint": "eslint 'src'",
"type-check": "tsc --noEmit",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"build:esm": "tsc -b tsconfig.esm.json && node scripts/esm-post-process.mjs",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:umd": "rollup -c && gzip umd/graphql-http.min.js -c > umd/graphql-http.min.js.gz",
"build": "yarn build:esm && yarn build:cjs && yarn build:umd",
"release": "semantic-release"
},
"workspaces": [
"implementations/**/*"
],
"peerDependencies": {
"graphql": ">=0.11 <=16"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^9.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@whatwg-node/fetch": "^0.5.1",
"babel-jest": "^29.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"fastify": "^4.9.2",
"graphql": "^16.6.0",
"jest": "^29.3.0",
"jest-jasmine2": "^29.3.0",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"rollup": "^3.2.5",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.5",
"tslib": "^2.4.1",
"typedoc": "^0.23.20",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.4"
},
"resolutions": {
"npm/libnpmversion": "^3.0.6"
}
}