This repository has been archived by the owner on Apr 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.53 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "bracket-data",
"description": "Get some helpful data for a tournament bracket.",
"version": "4.6.10",
"author": {
"name": "Luke Karrys",
"email": "luke@lukekarrys.com",
"url": "http://lukekarrys.com"
},
"browser": "browser/index.js",
"bugs": {
"url": "https://github.com/bracketclub/bracket-data/issues"
},
"dependencies": {
"lodash.merge": "^4.5.1"
},
"devDependencies": {
"alce": "^1.2.0",
"browserify": "^14.0.0",
"cheerio": "^1.0.0-rc.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"git-validate": "^2.1.4",
"js-size": "^2.0.0",
"lodash": "^4.14.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.0",
"prettier": "^2.2.1",
"request": "^2.74.0",
"scores": "^3.3.0",
"walkdir": "0.0.12"
},
"homepage": "https://github.com/bracketclub/bracket-data",
"keywords": [
"bracket",
"bracketclub",
"ncaa",
"tweetyourbracket"
],
"license": "MIT",
"main": "lib/index.js",
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/bracketclub/bracket-data.git"
},
"scripts": {
"bracketology": "node build/bracketology.js -y $(date '+%Y') -s ncaaw && node build/bracketology.js -y $(date '+%Y') -s ncaam",
"browser:size": "browserify browser/index | js-size",
"build": "node build/browser",
"lint": "prettier -l . && eslint .",
"names": "node build/names.js",
"test": "npm run build && mocha -c -u bdd -R spec test/*.js"
}
}