@happylinks/upchunk
Version:
Dead simple chunked file uploads using Fetch
49 lines (48 loc) • 1.29 kB
JSON
{
"name": "@happylinks/upchunk",
"version": "1.0.9",
"description": "Dead simple chunked file uploads using Fetch",
"main": "dist/upchunk.js",
"repository": "https://github.com/muxinc/upchunk",
"author": "Matthew McClure <m@mux.com>",
"license": "MIT",
"keywords": [
"browser upload",
"chunked upload",
"file uplooad",
"gcs upload",
"google cloud storage upload",
"large file upload",
"resumable",
"upload"
],
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rm -rf ./dist",
"test": "jest",
"lint": "tslint --project .",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "yarn clean && yarn lint && yarn test && webpack --config webpack.prod.js && yarn pack"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"event-target-shim": "^4.0.3"
}
}