uppy/packages/@uppy/companion/package.json
Ifedapo .A. Olarewaju cb75538fcd
Merge pull request #1966 from transloadit/instagram-graph
companion: support new Instagram Graph API
2020-01-21 13:45:36 +01:00

94 lines
2.4 KiB
JSON

{
"name": "@uppy/companion",
"version": "1.8.0",
"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/companion.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": "./bin/companion"
},
"dependencies": {
"@purest/providers": "1.0.1",
"@uppy/fs-tail-stream": "1.2.0",
"atob": "2.1.2",
"aws-sdk": "2.587.0",
"body-parser": "1.19.0",
"chalk": "2.4.2",
"common-tags": "1.8.0",
"connect-redis": "4.0.3",
"cookie-parser": "1.4.4",
"express": "4.17.1",
"express-interceptor": "1.2.0",
"express-prom-bundle": "3.3.0",
"express-request-id": "1.4.1",
"express-session": "1.15.6",
"grant": "4.6.5",
"helmet": "3.21.2",
"isobject": "3.0.1",
"jsonwebtoken": "8.5.1",
"lodash.merge": "4.6.2",
"mime-types": "2.1.25",
"morgan": "1.9.1",
"ms": "2.1.2",
"node-redis-pubsub": "4.0.0",
"node-schedule": "1.3.2",
"prom-client": "11.5.3",
"purest": "3.1.0",
"redis": "2.8.0",
"request": "2.88.0",
"semver": "6.3.0",
"serialize-error": "^2.1.0",
"tus-js-client": "1.8.0",
"uuid": "3.3.3",
"validator": "^12.1.0",
"ws": "6.2.1"
},
"devDependencies": {
"@types/node": "^12.6.8",
"typescript": "^3.4.5"
},
"files": [
"bin/",
"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"
}
}