-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.78 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "data",
"description": "The data and DB for Tweet Your Bracket.",
"version": "1.1.1",
"author": {
"name": "Luke Karrys",
"email": "[email protected]",
"url": "http://lukekarrys.com"
},
"bugs": {
"url": "https://bitbucket.org/lukekarrys/data/issues"
},
"dependencies": {
"async": "^2.4.1",
"bracket-data": "^4.6.10",
"bracket-updater": "^3.4.7",
"bracket-validator": "^3.1.1",
"bucker": "^1.1.1",
"dotenv": "^4.0.0",
"getconfig": "^4.5.0",
"lodash": "^4.17.4",
"moment": "^2.21.0",
"pg": "^8.5.1",
"scores": "^3.9.4",
"simple-realurl": "^1.1.2",
"twit": "^2.2.5",
"yargs": "^10.0.3"
},
"devDependencies": {
"@lukekarrys/eslint-config": "^6.0.4",
"bracket-generator": "^3.1.1",
"eslint": "^4.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-mysticatea": "^4.2.4",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^3.5.0",
"git-validate": "^2.2.2",
"json": "^10.0.0",
"mocha": "^4.0.1",
"ms": "^2.0.0",
"pm2": "^4.5.5",
"prettier": "^2.2.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"engines": {
"node": "^14.15.5",
"npm": "^6.14.11"
},
"homepage": "https://bitbucket.org/lukekarrys/data",
"keywords": [
"bracket",
"bracketclub",
"ncaa",
"tweetyourbracket"
],
"license": "UNLICENSED",
"main": "index.js",
"pre-commit": [
"test",
"lint"
],
"private": true,
"repository": {
"type": "git",
"url": "git://bitbucket.org/lukekarrys/data.git"
},
"scripts": {
"deploy": "./bin/linode.sh",
"dump": "./bin/dump.js",
"dump:prod-to-dev": "NODE_ENV=production npm run dump && npm run reset-db:dev && npm run dump",
"find-entry": "./bin/find-entry.js",
"heroku:psql": "heroku pg:psql postgresql-solid-92636 --app bracketclub",
"heroku:web": "open https://data.heroku.com/datastore/768c0b8c-6f86-451a-8cac-ddc7ec2940b5",
"insert-by-team": "./bin/insert-by-team.js",
"integration": "NODE_ENV=test ./bin/integration.sh",
"lint": "prettier -l . && eslint .",
"logs:clean": "rm -rf logs",
"reset-db": "./bin/db.sh",
"reset-db:dev": "npm run reset-db -- bracketclub development",
"reset-db:test": "npm run reset-db -- bracketclub-test test",
"start": "./bin/pm2.sh",
"test": "npm run test:integration && npm run test:entries && npm run test:scores && npm run test:finder",
"test:integration": "NODE_ENV=test tape test/*.js ",
"test:entries": "mocha -c -u bdd -R spec --timeout 15000 watchers/entry-watcher/test/*.js",
"test:finder": "mocha -c -u bdd -R spec --timeout 10000 watchers/bracket-finder/test/*.js",
"test:scores": "tape watchers/score-watcher/test/test.js | tap-spec"
}
}