package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "@uppy/companion",
  3. "version": "2.6.0",
  4. "description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
  5. "main": "lib/companion.js",
  6. "types": "lib/companion.d.ts",
  7. "author": "Transloadit.com",
  8. "license": "ISC",
  9. "homepage": "https://github.com/transloadit/uppy#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/transloadit/uppy.git"
  13. },
  14. "keywords": [
  15. "file uploader",
  16. "progress",
  17. "preview",
  18. "resumable uploads",
  19. "tus",
  20. "s3",
  21. "google drive",
  22. "dropbox",
  23. "box",
  24. "backend",
  25. "websocket",
  26. "express",
  27. "realtime"
  28. ],
  29. "bin": {
  30. "companion": "./bin/companion"
  31. },
  32. "dependencies": {
  33. "@purest/providers": "1.0.1",
  34. "atob": "2.1.2",
  35. "aws-sdk": "2.701.0",
  36. "body-parser": "1.19.0",
  37. "chalk": "2.4.2",
  38. "common-tags": "1.8.0",
  39. "connect-redis": "4.0.3",
  40. "cookie-parser": "1.4.5",
  41. "escape-string-regexp": "2.0.0",
  42. "express": "4.17.1",
  43. "express-interceptor": "1.2.0",
  44. "express-prom-bundle": "6.3.0",
  45. "express-request-id": "1.4.1",
  46. "express-session": "1.17.1",
  47. "grant": "4.7.0",
  48. "helmet": "3.23.1",
  49. "ip-address": "6.2.0",
  50. "isobject": "3.0.1",
  51. "jsonwebtoken": "8.5.1",
  52. "lodash": "^4.17.20",
  53. "mime-types": "2.1.25",
  54. "moment-timezone": "^0.5.31",
  55. "morgan": "1.10.0",
  56. "ms": "2.1.2",
  57. "node-redis-pubsub": "4.0.0",
  58. "node-schedule": "1.3.2",
  59. "prom-client": "12.0.0",
  60. "purest": "3.1.0",
  61. "redis": "3.0.2",
  62. "request": "2.88.2",
  63. "semver": "6.3.0",
  64. "serialize-error": "^2.1.0",
  65. "tus-js-client": "2.1.1",
  66. "uuid": "8.1.0",
  67. "validator": "^12.1.0",
  68. "ws": "6.2.1"
  69. },
  70. "devDependencies": {
  71. "@types/node": "12.12.27",
  72. "typescript": "3.7.5"
  73. },
  74. "files": [
  75. "bin/",
  76. "lib/"
  77. ],
  78. "jest": {
  79. "testEnvironment": "node",
  80. "automock": false,
  81. "collectCoverage": true,
  82. "collectCoverageFrom": [
  83. "src/**",
  84. "!src/**/*.d.ts"
  85. ]
  86. },
  87. "scripts": {
  88. "build": "tsc -p .",
  89. "deploy": "kubectl apply -f infra/kube/companion-kube.yml",
  90. "prepublishOnly": "npm run build",
  91. "start": "node ./lib/standalone/start-server.js",
  92. "test": "bash -c 'source env.test.sh && ../../../node_modules/jest/bin/jest.js'",
  93. "test:watch": "npm test -- --watch"
  94. },
  95. "engines": {
  96. "node": ">=10.20.1"
  97. }
  98. }