-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1020 Bytes
/
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
{
"name": "terminalfootball",
"version": "1.0.5",
"description": "Get live football scores and fixtures on your terminal with ease",
"main": "cli.js",
"scripts": {
"lint": "eslint ./cli.js ./cmds/*.js"
},
"bin": {
"football": "./cli.js"
},
"engines": {
"node": ">=7.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/nileshdas/terminalFootball.git"
},
"author": "Nilesh Das",
"license": "MIT",
"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"
}
}