{
  "name": "uppy-server",
  "version": "0.13.4",
  "description": "Server component 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-server#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/transloadit/uppy-server.git"
  },
  "keywords": [
    "file uploader",
    "progress",
    "preview",
    "resumable uploads",
    "tus",
    "s3",
    "google drive",
    "dropbox",
    "backend",
    "websocket",
    "express",
    "realtime"
  ],
  "bin": {
    "uppy-server": "./lib/standalone/start-server.js"
  },
  "lint-staged": {
    "*.js": "eslint"
  },
  "pre-commit": "lint-staged",
  "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",
    "eslint": "^4.19.1",
    "eslint-config-standard": "5.1.0",
    "eslint-plugin-promise": "1.0.8",
    "eslint-plugin-standard": "1.3.2",
    "fakefile": "0.0.8",
    "jest": "^20.0.4",
    "jest-cli": "^23.1.0",
    "lint-staged": "3.2.1",
    "nodemon": "^1.17.5",
    "pre-commit": "1.1.3",
    "supertest": "3.0.0",
    "typescript": "2.7.1"
  },
  "dependencies": {
    "@purest/providers": "1.0.0",
    "@uppy/fs-tail-stream": "^1.2.0",
    "atob": "2.1.0",
    "aws-sdk": "^2.254.1",
    "body-parser": "1.18.2",
    "common-tags": "^1.7.2",
    "connect-redis": "^3.3.0",
    "cookie-parser": "1.4.3",
    "express": "^4.16.0",
    "express-interceptor": "^1.2.0",
    "express-prom-bundle": "^3.1.0",
    "express-session": "1.15.6",
    "grant-express": "^4.0.1",
    "helmet": "3.8.2",
    "isobject": "3.0.1",
    "jsonwebtoken": "^8.0.1",
    "lodash.merge": "^4.6.0",
    "morgan": "1.9.0",
    "ms": "^2.0.0",
    "node-redis-pubsub": "^2.0.0",
    "node-schedule": "^1.3.0",
    "prom-client": "^10.0.2",
    "purest": "3.0.0",
    "redis": "^2.7.1",
    "request": "2.85.0",
    "serialize-error": "^2.1.0",
    "tus-js-client": "1.4.5",
    "uuid": "2.0.2",
    "validator": "^9.0.0",
    "ws": "1.1.5"
  },
  "files": [
    "lib/"
  ],
  "jest": {
    "testEnvironment": "node",
    "automock": false,
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**"
    ]
  },
  "scripts": {
    "build": "tsc -p .",
    "deploy": "kubectl apply -f infra/kube/uppy-server-kube.yml",
    "fix": "eslint . --fix",
    "lint": "eslint .",
    "lint-staged": "lint-staged",
    "prepublish": "npm run build",
    "release:major": "env SEMANTIC=major npm run release",
    "release:minor": "env SEMANTIC=minor npm run release",
    "release:patch": "env SEMANTIC=patch npm run release",
    "release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish",
    "start": "node ./lib/standalone/start-server.js",
    "start:dev": "bash -c 'source env.sh; env UPPYSERVER_DATADIR=./output UPPYSERVER_DOMAIN=localhost:3020 UPPYSERVER_PROTOCOL=http UPPYSERVER_PORT=3020 UPPY_ENDPOINTS=\"\" nodemon --exec node ./src/standalone/start-server.js'",
    "test": "/bin/bash -c 'npm run build && npm run lint && source env.test.sh && jest'",
    "test:watch": "npm test -- --watch"
  },
  "engines": {
    "node": ">=6.0.0"
  }
}
