UNPKG

flechette

Version:

A highly configurable wrapper for Fetch API that supports programmatic retries and completely obfuscates promise handling.

52 lines (51 loc) 1.38 kB
{ "name": "flechette", "version": "0.1.4", "description": "A highly configurable wrapper for Fetch API that supports programmatic retries and completely obfuscates promise handling.", "main": "lib/index.js", "types": "lib/index.d.ts", "homepage": "https://github.com/pseudosma/flechette", "repository": { "type": "git", "url": "git://github.com/pseudosma/flechette.git" }, "bugs": { "url": "https://github.com/pseudosma/flechette/issues" }, "keywords": [ "fetch", "Fetch API", "FetchAPI", "flechette", "browser", "wrap", "wrapper" ], "author": "David Paige", "license": "MIT", "files": [ "lib/**/*" ], "scripts": { "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "test": "jest --config jestconfig.json", "coverallsTest": "jest --config jestconfig.json && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "build": "tsc", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint" }, "devDependencies": { "@types/jest": "^24.9.0", "coveralls": "^3.1.0", "jest": "^24.9.0", "prettier": "^1.19.1", "ts-jest": "^24.3.0", "tslint": "^5.20.1", "tslint-config-prettier": "^1.18.0", "typescript": "^3.7.5" }, "dependencies": { "storage-deck": "^1.0.0" } }