@vepler/http-client
Version:
A flexible and extensible API service library for making HTTP requests with built-in authentication support for bearer tokens and API keys.
72 lines (71 loc) • 1.89 kB
JSON
{
"name": "@vepler/http-client",
"version": "1.0.2",
"description": "A flexible and extensible API service library for making HTTP requests with built-in authentication support for bearer tokens and API keys.", "main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git remote add origin git@github.com:Vepler/property-query-builder.git",
"author": "Vepler Limited",
"license": "MIT",
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"private": false,
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^4.1.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"proptech",
"property-technology",
"real-estate-technology",
"uk-proptech",
"property-data",
"property-search",
"property-filtering",
"property-database",
"property-api",
"property-sdk",
"real-estate-data",
"real-estate-search",
"real-estate-filtering",
"real-estate-database",
"real-estate-api",
"real-estate-sdk",
"typescript",
"open-source",
"npm"
],
"dependencies": {
"@vepler/logger": "^1.0.0",
"axios": "^1.6.8"
}
}