footballdata-api-v2
Version:
Football Data API
47 lines (46 loc) • 1.17 kB
JSON
{
"name": "footballdata-api-v2",
"version": "2.3.0",
"description": "Football Data API",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"build": "yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" ",
"demo": "node demo/demo.js",
"debug": "yarn build:js && yarn demo",
"deploy": "npm publish",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/NearHuscarl/FootballDataAPI.git"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"keywords": [
"api",
"football",
"football-data"
],
"author": "NearHuscarl <near.huscarl@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/node-fetch": "^2.3.2",
"chai": "^4.2.0",
"dotenv": "^7.0.0",
"mocha": "^6.1.4",
"typescript": "^3.4.4"
},
"dependencies": {
"node-fetch": "^2.3.0"
}
}