-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "footballcli",
"version": "0.14.10",
"description": "Command Line Interface for next fixtures, live scores and more",
"main": "cli.js",
"scripts": {
"lint": "eslint ./cli.js ./cmds/*.js"
},
"bin": {
"football": "./cli.js"
},
"engines": {
"node": ">=7.10.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manrajgrover/football-cli.git"
},
"keywords": [
"football",
"scores",
"live",
"fixtures",
"cli"
],
"author": "Manraj Singh <[email protected]> (http://manrajsingh.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/manrajgrover/football-cli/issues"
},
"homepage": "https://github.com/manrajgrover/football-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"cli-table3": "^0.5.0",
"inquirer": "^1.1.2",
"jsonexport": "^2.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.19.3",
"ora": "^0.3.0",
"request": "^2.87.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.0",
"prettier": "^1.14.3"
}
}