This repository was archived by the owner on May 26, 2023. It is now read-only.
forked from jaydenseric/graphql-upload
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 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
{
"name": "@apollographql/graphql-upload-8-fork",
"version": "8.1.4",
"description": "Fork of graphql-upload@8 that works with graphql@15 for compatibility with apollo-server@2",
"license": "MIT",
"author": "Apollo <[email protected]>",
"repository": "github:apollographql/graphql-upload",
"homepage": "https://github.com/apollographql/graphql-upload#readme",
"keywords": [
"graphql",
"upload",
"file",
"multipart",
"server",
"koa",
"express",
"apollo",
"esm",
"mjs"
],
"files": [
"lib",
"index.d.ts",
"!*.test.*",
"!test-helpers"
],
"main": "lib",
"types": "index.d.ts",
"engines": {
"node": ">=8.5"
},
"browserslist": "node >= 8.5",
"peerDependencies": {
"graphql": "0.13.1 - 15"
},
"dependencies": {
"@types/express": "*",
"@types/fs-capacitor": "^2.0.0",
"@types/koa": "*",
"busboy": "^0.3.1",
"fs-capacitor": "^2.0.4",
"http-errors": "^1.7.3",
"object-path": "^0.11.4"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-env": "^9.1.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-import-order-alphabetical": "^1.0.0",
"eslint-plugin-jsdoc": "^15.9.10",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"form-data": "^2.5.1",
"graphql": "^14.5.8",
"husky": "^3.0.8",
"koa": "^2.8.2",
"lint-staged": "^9.4.2",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"tap": "^14.6.9"
},
"scripts": {
"prepare": "npm run prepare:clean && npm run prepare:mjs && npm run prepare:js && npm run prepare:prettier",
"prepare:clean": "rm -rf lib",
"prepare:mjs": "BABEL_ESM=1 babel src -d lib --keep-file-extension",
"prepare:js": "babel src -d lib",
"prepare:prettier": "prettier 'lib/**/*.{mjs,js}' readme.md --write",
"test": "npm run test:eslint && npm run test:prettier && npm run test:tap",
"test:eslint": "eslint . --ext mjs,js",
"test:prettier": "prettier '**/*.{json,yml,md}' -l",
"test:tap": "tap --test-ignore=src",
"prepublishOnly": "npm test"
}
}