-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "libertadores-cli",
"description": "A simple CLI to get information about \"Copa Libertadores\" right in your terminal",
"version": "1.1.1",
"author": "Federico Kauffman",
"bin": {
"libertadores": "./bin/run"
},
"bugs": "https://github.com/streaver/libertadores-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"chalk": "^2.4.2",
"cli-ux": "^5.3.1",
"mock-require": "^3.0.3",
"puppeteer": "^1.19.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"chai": "^4",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-oclif": "^3.1",
"eslint-plugin-import": "^2.18.2",
"eslint": "^5.16.0",
"prettier": "1.18.2",
"globby": "^10",
"mocha": "^6",
"nyc": "^14"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/streaver/libertadores-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "libertadores",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "streaver/libertadores-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"report": "nyc report",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc --reporter lcov --exclude .redhead/**/*.js mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}