UNPKG

upload

Version:

Isomorphic TypeScript file upload library.

62 lines (61 loc) 1.42 kB
{ "name": "upload", "version": "1.3.2", "description": "Isomorphic TypeScript file upload library.", "main": "lib/index.js", "types": "lib/index.d.ts", "keywords": [ "http", "upload", "library", "typescript" ], "scripts": { "prepare": "npm run build", "test": "jest", "build": "tsc", "lint": "eslint ." }, "repository": { "type": "git", "url": "https://github.com/mat-sz/upload.git" }, "bugs": { "url": "https://github.com/mat-sz/upload/issues" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ "prettier --write" ], "__tests__/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ "prettier --write" ] }, "homepage": "https://github.com/mat-sz/upload", "author": "Mat Sz <contact@matsz.dev>", "license": "BSD-3-Clause-Clear", "private": false, "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^18.7.16", "@typescript-eslint/eslint-plugin": "^5.36.2", "@typescript-eslint/parser": "^5.36.2", "eslint": "^8.23.0", "husky": "^8.0.1", "jest": "^29.0.3", "jest-environment-jsdom": "^29.0.3", "lint-staged": "^13.0.3", "prettier": "^2.7.1", "ts-jest": "^29.0.0", "ts-node": "^10.9.1", "typescript": "^4.8.3" }, "dependencies": { "form-data": "^4.0.0" } }