-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1000 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
39
40
41
42
43
44
45
46
{
"name": "@lukekarrys/ebp",
"description": "Get all the possible outcomes for an ESPN bracket challenge group",
"version": "1.2.0",
"author": "Luke Karrys <[email protected]>",
"bin": {
"ebp": "./bin/index.js",
"entries": "./bin/entries.js",
"entry": "./bin/entry.js"
},
"dependencies": {
"bracket-data": "^4.7.0",
"bracket-possibilities": "^1.4.0",
"bracket-scorer": "^3.4.2",
"bracket-updater": "^3.4.7",
"bracket-validator": "^3.1.1",
"html-entities": "^2.3.2",
"just-pick": "^4.0.1",
"node-fetch": "^2.6.7",
"piscina": "^3.2.0",
"scrape-it": "^5.3.2",
"single-line-log": "^1.1.2"
},
"devDependencies": {
"eslint": "^8.11.0",
"prettier": "^2.6.0"
},
"engines": {
"node": "16"
},
"eslintConfig": {
"env": {
"es2022": true,
"node": true
},
"extends": "eslint:recommended"
},
"files": [
"bin/",
"lib/"
],
"license": "ISC",
"prettier": {
"semi": false
}
}