UNPKG

@qrvey/fetch

Version:

![install size](https://packagephobia.now.sh/badge?p=%40qrvey%2Ffetch) ![coverage](https://img.shields.io/badge/unit_test_coverage-96%25-brightgreen)

52 lines (51 loc) 1.57 kB
{ "name": "@qrvey/fetch", "types": "dist/types/index.d.ts", "main": "dist/cjs/index.js", "version": "1.1.6", "license": "MIT", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "exports": { ".": { "import": "./dist/esm/index.mjs", "require": "./dist/cjs/index.js", "default": "./dist/cjs/index.js" } }, "scripts": { "test": "jest", "test:cov": "jest --coverage && chmod +x ./coverageReader.sh && sh ./coverageReader.sh", "type-check": "tsc", "build:clean": "rm -rf dist", "build:compile:cjs": "tsup --config ./tsup.config.cjs.ts", "build:compile:cjs:debug": "tsc -b ./tsc.config.cjs.json", "build:compile:esm": "tsup --config ./tsup.config.esm.ts", "build:compile:types": "tsup --config ./tsup.config.types.ts", "build:compile": "yarn build:compile:cjs && yarn build:compile:esm && yarn build:compile:types", "build": "yarn test && yarn build:clean && yarn build:compile", "publish-package": "yarn test:cov && yarn build && npm publish" }, "devDependencies": { "auto-version-js": "^0.3.10", "jest": "^29.7.0", "lcov-parse": "^1.0.0", "ts-jest": "^29.1.2", "tsup": "^8.0.1", "typescript": "^5.3.3" }, "repository": { "type": "git" }, "files": [ "dist/*" ], "keywords": [ "http", "fetch", "node", "qrvey" ] }