-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
100 lines (100 loc) · 2.7 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
{
"name": "graphql-upload",
"version": "17.0.0",
"description": "Middleware and a scalar Upload to add support for GraphQL multipart requests (file uploads via queries and mutations) to various Node.js GraphQL servers.",
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "[email protected]",
"url": "https://jaydenseric.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaydenseric/graphql-upload.git"
},
"homepage": "https://github.com/jaydenseric/graphql-upload#readme",
"bugs": "https://github.com/jaydenseric/graphql-upload/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"keywords": [
"graphql",
"upload",
"file",
"multipart",
"request",
"server",
"middleware",
"koa",
"express",
"apollo",
"esm",
"mjs"
],
"files": [
"GRAPHQL_MULTIPART_REQUEST_SPEC_URL.mjs",
"GraphQLUpload.mjs",
"graphqlUploadExpress.mjs",
"graphqlUploadKoa.mjs",
"ignoreStream.mjs",
"processRequest.mjs",
"Upload.mjs"
],
"sideEffects": false,
"exports": {
"./GraphQLUpload.mjs": "./GraphQLUpload.mjs",
"./graphqlUploadExpress.mjs": "./graphqlUploadExpress.mjs",
"./graphqlUploadKoa.mjs": "./graphqlUploadKoa.mjs",
"./package.json": "./package.json",
"./processRequest.mjs": "./processRequest.mjs",
"./Upload.mjs": "./Upload.mjs"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.0.0"
},
"peerDependencies": {
"@types/express": "4.0.29 - 5",
"@types/koa": "^2.11.4",
"graphql": "^16.3.0"
},
"peerDependenciesMeta": {
"@types/express": {
"optional": true
},
"@types/koa": {
"optional": true
}
},
"dependencies": {
"@types/busboy": "^1.5.0",
"@types/node": "*",
"@types/object-path": "^0.11.1",
"busboy": "^1.6.0",
"fs-capacitor": "^8.0.0",
"http-errors": "^2.0.0",
"object-path": "^0.11.8"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/express": "^5.0.0",
"@types/koa": "^2.15.0",
"async-listen": "^3.0.1",
"coverage-node": "^8.0.0",
"eslint": "^9.12.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"express": "^5.0.0",
"form-data-encoder": "^4.0.2",
"globals": "^15.10.0",
"graphql": "^16.9.0",
"koa": "^2.15.3",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"scripts": {
"prettier": "prettier -c .",
"eslint": "eslint",
"types": "tsc -p jsconfig.json",
"tests": "coverage-node --test-reporter=spec --test *.test.mjs",
"test": "node --run prettier && node --run eslint && node --run types && node --run tests",
"prepublishOnly": "node --run test"
}
}