fetch-api-progress
Version:
Upload and download progress for Fetch API
65 lines (64 loc) • 1.71 kB
JSON
{
"name": "fetch-api-progress",
"version": "0.1.1",
"description": "Upload and download progress for Fetch API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "github:teil-one/fetch-api-progress"
},
"scripts": {
"start": "rimraf dist && node ./build/start.mjs",
"build": "rimraf dist && node ./build/build.mjs",
"postbuild": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"pretest": "node ./build/test-build.mjs",
"test": "start-server-and-test 'node tests/serve.mjs' 3000 'node --test --experimental-test-coverage tests/node/**/*.test.mjs'",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"preversion": "npm test"
},
"keywords": [
"fetch",
"Fetch API",
"upload",
"download",
"progress"
],
"author": "Sergei Koshel",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/teil-one/fetch-api-progress/issues"
},
"homepage": "https://github.com/teil-one/fetch-api-progress#readme",
"volta": {
"node": "22.14.0",
"npm": "11.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"esbuild": "^0.25.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"serve": "^14.2.4",
"start-server-and-test": "^2.0.11",
"typescript": "^5.8.3"
}
}