fantasy-api-client
Version:
API client to easily interact with various fantasy sports APIs including ESPN, Yahoo, and Sleeper
52 lines (51 loc) • 1.32 kB
JSON
{
"name": "fantasy-api-client",
"version": "0.0.1",
"description": "API client to easily interact with various fantasy sports APIs including ESPN, Yahoo, and Sleeper",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Stat-Blitz/fantasy-api-client.git"
},
"keywords": [
"fantasy",
"api",
"client",
"typescript",
"sleeper",
"espn",
"yahoo"
],
"author": "Parker Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/Stat-Blitz/fantasy-api-client/issues"
},
"homepage": "https://github.com/Stat-Blitz/fantasy-api-client#readme",
"devDependencies": {
"@types/jest": "^28.1.7",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"dependencies": {
"dotenv": "^16.0.1",
"node-fetch": "^3.2.10"
}
}