mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-26 03:35:19 +00:00
106 lines
2.9 KiB
JSON
106 lines
2.9 KiB
JSON
{
|
|
"name": "@uppy/companion",
|
|
"version": "0.17.5",
|
|
"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:",
|
|
"main": "lib/uppy.js",
|
|
"types": "types/index.d.ts",
|
|
"author": "Transloadit.com",
|
|
"license": "ISC",
|
|
"homepage": "https://github.com/transloadit/uppy#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transloadit/uppy.git"
|
|
},
|
|
"keywords": [
|
|
"file uploader",
|
|
"progress",
|
|
"preview",
|
|
"resumable uploads",
|
|
"tus",
|
|
"s3",
|
|
"google drive",
|
|
"dropbox",
|
|
"backend",
|
|
"websocket",
|
|
"express",
|
|
"realtime"
|
|
],
|
|
"bin": {
|
|
"companion": "./lib/standalone/start-server.js"
|
|
},
|
|
"dependencies": {
|
|
"@purest/providers": "1.0.0",
|
|
"@uppy/fs-tail-stream": "1.2.0",
|
|
"atob": "2.1.0",
|
|
"aws-sdk": "2.388.0",
|
|
"body-parser": "1.18.2",
|
|
"common-tags": "1.8.0",
|
|
"connect-redis": "3.4.0",
|
|
"cookie-parser": "1.4.3",
|
|
"express": "4.16.3",
|
|
"express-interceptor": "1.2.0",
|
|
"express-prom-bundle": "3.3.0",
|
|
"express-session": "1.15.6",
|
|
"grant-express": "4.1.2",
|
|
"helmet": "3.8.2",
|
|
"isobject": "3.0.1",
|
|
"jsonwebtoken": "8.3.0",
|
|
"lodash.merge": "4.6.1",
|
|
"morgan": "1.9.1",
|
|
"ms": "2.1.1",
|
|
"node-redis-pubsub": "2.0.0",
|
|
"node-schedule": "1.3.1",
|
|
"prom-client": "10.2.3",
|
|
"purest": "3.0.0",
|
|
"redis": "2.8.0",
|
|
"request": "2.85.0",
|
|
"serialize-error": "^2.1.0",
|
|
"tus-js-client": "github:ifedapoolarewaju/tus-js-client#d63fcf08ee43080a0e1cc968ad5986ace788c2d4",
|
|
"uuid": "2.0.2",
|
|
"validator": "^9.0.0",
|
|
"ws": "1.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/aws-serverless-express": "^3.0.1",
|
|
"@types/compression": "0.0.36",
|
|
"@types/connect-redis": "0.0.7",
|
|
"@types/cookie-parser": "^1.4.1",
|
|
"@types/cors": "^2.8.3",
|
|
"@types/express-session": "^1.15.6",
|
|
"@types/helmet": "0.0.37",
|
|
"@types/jsonwebtoken": "^7.2.5",
|
|
"@types/lodash.merge": "^4.6.3",
|
|
"@types/morgan": "^1.7.35",
|
|
"@types/ms": "^0.7.30",
|
|
"@types/node": "^8.5.1",
|
|
"@types/request": "^2.0.9",
|
|
"@types/tus-js-client": "^1.4.1",
|
|
"@types/uuid": "^3.4.3",
|
|
"@types/ws": "^3.2.1",
|
|
"nodemon": "^1.17.5",
|
|
"supertest": "3.0.0",
|
|
"typescript": "^2.9.2"
|
|
},
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"automock": false,
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"src/**"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"deploy": "kubectl apply -f infra/kube/companion-kube.yml",
|
|
"prepublishOnly": "npm run build",
|
|
"start": "node ./lib/standalone/start-server.js",
|
|
"test": "/bin/bash -c 'npm run build && source env.test.sh && jest'",
|
|
"test:watch": "npm test -- --watch"
|
|
},
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
}
|
|
}
|