forked from jaydenseric/graphql-upload
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "graphql-upload-minimal",
"version": "1.6.0",
"description": "Minimalistic and developer friendly middleware and an Upload scalar to add support for GraphQL multipart requests (file uploads via queries and mutations) to various Node.js GraphQL servers.",
"license": "MIT",
"types": "./public/index.d.ts",
"author": {
"name": "Jayden Seric",
"email": "me@jaydenseric.com",
"url": "https://jaydenseric.com"
},
"repository": "github:flash-oss/graphql-upload-minimal",
"homepage": "https://github.com/flash-oss/graphql-upload-minimal#readme",
"bugs": "https://github.com/flash-oss/graphql-upload-minimal/issues",
"keywords": [
"graphql",
"upload",
"file",
"multipart",
"server",
"koa",
"express",
"apollo",
"esm",
"mjs"
],
"files": [
"public"
],
"main": "public",
"exports": {
".": {
"types": "./public/index.d.ts",
"import": "./public/index.mjs",
"require": "./public/index.js"
},
"./public/": "./public/",
"./package": "./package.json",
"./package.json": "./package.json"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"graphql": "0.13.1 - 16"
},
"dependencies": {
"busboy": "^1.6.0"
},
"devDependencies": {
"eslint": "^7.1.0",
"express": "^4.17.1",
"form-data": "^3.0.0",
"graphql": "^16.3.0",
"koa": "^2.12.0",
"mocha": "^7.2.0",
"node-fetch": "^2.6.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5"
},
"scripts": {
"ci": "npm run lint && npm t",
"test": "mocha test --recursive",
"lint": "eslint .",
"cov": "nyc npm run test",
"prepublishOnly": "npm test"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11
},
"rules": {}
}
}