-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "scores",
"description": "Track the completion of sports games from a URL.",
"version": "3.9.4",
"author": "Luke Karrys <luke@lukekarrys.com>",
"bugs": {
"url": "https://github.com/bracketclub/scores/issues"
},
"dependencies": {
"async": "^2.0.1",
"bucker": "^1.1.1",
"jsdom": "^11.0.0",
"lodash": "^4.14.2",
"moment": "^2.14.1",
"moment-timezone": "^0.5.5",
"ms": "^2.0.0",
"request": "^2.74.0"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"commander": "^2.9.0",
"git-validate": "^2.1.4",
"prettier": "^2.2.1",
"tape": "^4.6.0",
"tape-watch": "^2.1.0"
},
"homepage": "https://github.com/bracketclub/scores",
"keywords": [
"bracket",
"ncaa",
"scores",
"tweetyourbracket",
"bracketclub"
],
"license": "MIT",
"main": "lib/emitter.js",
"pre-commit": [
"lint",
"validate",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/bracketclub/scores.git"
},
"scripts": {
"example": "node ./test/example",
"lint": "prettier -l .",
"teams": "./lib/getTeams.js",
"test": "tape test/tests/*.js | tap-format-spec",
"test:watch": "tape-watch test/tests/*.js | tap-format-spec",
"validate": "npm ls"
}
}