{
  "name": "tus-js-client",
  "version": "1.8.0",
  "description": "A pure JavaScript client for the tus resumable upload protocol",
  "main": "lib.es5/index.js",
  "jsnext:main": "lib/index.js",
  "files": [
    "lib/**/*",
    "lib.es5/**/*",
    "dist/**/*",
    "demos/**/*",
    "bin/**/*",
    "test/**/*"
  ],
  "browser": {
    "./lib/node/request.js": "./lib/browser/request.js",
    "./lib/node/base64.js": "./lib/browser/base64.js",
    "./lib/node/storage.js": "./lib/browser/storage.js",
    "./lib/node/source.js": "./lib/browser/source.js",
    "./lib/node/fingerprint.js": "./lib/browser/fingerprint.js",
    "./lib.es5/node/request.js": "./lib.es5/browser/request.js",
    "./lib.es5/node/storage.js": "./lib.es5/browser/storage.js",
    "./lib.es5/node/source.js": "./lib.es5/browser/source.js",
    "./lib.es5/node/fingerprint.js": "./lib.es5/browser/fingerprint.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/tus/tus-js-client.git"
  },
  "keywords": [
    "tus",
    "resumable",
    "upload",
    "protocol",
    "progress",
    "file",
    "browser"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tus/tus-js-client/issues"
  },
  "homepage": "https://github.com/tus/tus-js-client",
  "devDependencies": {
    "axios": "^0.18.0",
    "babel-cli": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "babelify": "^7.3.0",
    "browserify": "^12.0.0",
    "browserstack": "^1.5.2",
    "browserstack-runner": "git://github.com/Acconut/browserstack-runner.git#fix_etxtbsy",
    "derequire": "^2.0.6",
    "eslint": "^4.19.1",
    "eslint-plugin-react": "^7.11.1",
    "exorcist": "^0.4.0",
    "jasmine": "^2.5.2",
    "jasmine-ajax": "^3.2.0",
    "jasmine-core": "^2.4.1",
    "puppeteer": "^1.19.0",
    "synchronous-promise": "^2.0.5",
    "temp": "^0.8.3",
    "uglify-js": "^2.6.0",
    "watchify": "^3.11.1"
  },
  "dependencies": {
    "buffer-from": "^0.1.1",
    "combine-errors": "^3.0.3",
    "extend": "^3.0.2",
    "js-base64": "^2.4.9",
    "lodash.throttle": "^4.1.1",
    "proper-lockfile": "^2.0.1",
    "url-parse": "^1.4.3"
  },
  "scripts": {
    "build": "mkdir -p dist && browserify lib/index.js -t [ babelify ] -s tus -d | exorcist ./dist/tus.js.map | derequire > dist/tus.js",
    "watch": "watchify lib/index.js -t babelify -o dist/tus.js -s tus -v -d",
    "test": "./bin/test",
    "puppeteer-test": "node bin/puppeteer-jasmine.js",
    "browserstack-test": "node bin/browserstack-jasmine.js",
    "node-test": "cd test; jasmine",
    "minify": "uglifyjs ./dist/tus.js -o ./dist/tus.min.js --in-source-map ./dist/tus.js.map --source-map ./dist/tus.min.js.map --source-map-url tus.min.js.map",
    "dist": "npm run build && npm run minify",
    "lint": "eslint lib demos test bin",
    "transpile": "babel -d lib.es5/ lib/"
  }
}
