UNPKG

react-axios-progressbar

Version:

Show a ProgressBar in React whenever an axios request is in progress.

71 lines (70 loc) 1.99 kB
{ "name": "react-axios-progressbar", "version": "1.2.1", "description": "Show a ProgressBar in React whenever an axios request is in progress.", "files": [ "lib" ], "main": "lib/index.js", "repository": { "type": "git", "url": "git+https://github.com/42BV/react-axios-progressbar.git" }, "keywords": [ "React", "Axios", "Progressbar" ], "author": "Gido Manders", "license": "ISC", "bugs": { "url": "https://github.com/42BV/react-axios-progressbar/issues" }, "homepage": "https://github.com/42BV/react-axios-progressbar#readme", "peerDependencies": { "axios": "^0.27.2||^1.0.0", "react": "^17.0.2||^18.0.0||^19.0.0" }, "devDependencies": { "@eslint/js": "9.39.2", "@testing-library/dom": "10.4.1", "@testing-library/jest-dom": "6.9.1", "@testing-library/react": "16.3.2", "@types/react": "19.2.13", "@vitest/coverage-v8": "4.0.18", "@vitest/eslint-plugin": "1.6.6", "axios": "1.13.5", "eslint": "9.39.2", "eslint-config-prettier": "10.1.8", "eslint-plugin-react": "7.37.5", "eslint-plugin-react-hooks": "7.0.1", "husky": "9.1.7", "jsdom": "28.0.0", "lint-staged": "16.2.7", "np": "11.0.2", "prettier": "3.8.1", "react": "19.2.4", "react-dom": "19.2.4", "typescript": "5.9.3", "typescript-eslint": "8.55.0", "vitest": "4.0.18" }, "scripts": { "start": "vitest --watch", "clean": "rm -rf lib", "test": "npm run lint && npm run test:ts && npm run test:coverage", "test:ts": "tsc --version && tsc --noEmit", "test:coverage": "vitest run --coverage", "test:watch": "vitest --coverage", "tsc": "npm run clean && tsc --version && tsc", "lint": "eslint src tests --max-warnings=0", "release": "npm run tsc && np", "dev:publish": "./scripts/dev-publish.sh", "prepare": "husky" }, "lint-staged": { "{src,tests}/**/*.{js,jsx,json,scss,ts,tsx}": [ "prettier --write" ] } }