Skip to content

Commit

Permalink
Initial commit, setting up project
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Beane authored and Andrew Beane committed Jul 13, 2019
0 parents commit 69a617c
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 0 deletions.
43 changes: 43 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "mlb-stats-api",
"version": "1.0.0",
"description": "Node JS Library for consuming MLB's official stats API",
"main": "index.js",
"scripts": {
"test": "test"
},
"keywords": [
"node",
"nodejs",
"mlb",
"mlb-stats-api"
],
"author": "Andy Beane",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0"
}
}
13 changes: 13 additions & 0 deletions src/api.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';
const axios = require('axios');

class MLBStatsAPI {
constructor() {

}


}


exports.MLBStatsAPI = MLBStatsAPI;
Empty file added src/index.js
Empty file.

0 comments on commit 69a617c

Please sign in to comment.