-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 858 Bytes
/
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
{
"name": "fastify-gql-upload",
"version": "1.0.0",
"description": "Fastify plugin to support GraphQL uploads using graphql-upload",
"main": "index.js",
"scripts": {
"test": "tap --no-coverage --no-esm test/*.test.js"
},
"keywords": [
"fastify",
"graphql",
"upload"
],
"author": "Brian Mullan <[email protected]>",
"license": "ISC",
"dependencies": {
"fastify-plugin": "^1.6.0",
"graphql-upload": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmullan91/fastify-gql-upload.git"
},
"bugs": {
"url": "https://github.com/bmullan91/fastify-gql-upload/issues"
},
"homepage": "https://github.com/bmullan91/fastify-gql-upload#readme",
"devDependencies": {
"fastify": "2.12.0",
"fastify-gql": "3.0.6",
"form-data": "3.0.0",
"tap": "14.10.6"
}
}