-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 902 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "nfl-nerd",
"version": "1.0.2",
"description": "espn data fetcher / web scraper for nfl player prop bets",
"repository": "github:nntrn/nfl-nerd",
"homepage": "https://nntrn.github.io/nfl-nerd/",
"main": "index.js",
"scripts": {
"get-plays": "bin/plays",
"update-roster": "bin/roster",
"create-stats": "bin/stats-md",
"deploy": "gh-pages -d public"
},
"keywords": [
"nfl",
"espn",
"player props",
"first TD",
"web scrape",
"fetch",
"betting"
],
"author": "annie tran (https://github.com/nntrn)",
"license": "MIT",
"dependencies": {
"@nntrn/datalib-extras": "^1.0.1",
"ascii-table": "^0.0.9",
"async": "^3.2.1",
"better-sqlite3": "^7.4.3",
"encoding": "^0.1.13",
"node-fetch": "2.6.1",
"papaparse": "^5.3.1",
"quick-pivot": "^2.7.0"
},
"devDependencies": {
"gh-pages": "^3.2.3"
}
}