-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "cbb",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"description": "College Basketball game times and live scores",
"repository": {
"type": "git",
"url": "git+https://github.com/johnsylvain/cbb.git"
},
"bin": {
"cbb": "bin/cli.js"
},
"dependencies": {
"clear": "^0.1.0",
"cli-color": "^1.4.0",
"cli-table": "^0.3.1",
"date-fns": "^1.30.1",
"inquirer": "^7.3.3",
"meow": "^5.0.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"bugs": {
"url": "https://github.com/johnsylvain/cbb/issues"
},
"homepage": "https://github.com/johnsylvain/cbb#readme",
"scripts": {
"format": "pretty-quick --pattern bin/*",
"release": "git tag $npm_package_version && git push --tags && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "npm run format -- --staged"
}
},
"keywords": [
"cli",
"college basketball",
"sports"
],
"author": ""
}