-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "league-cli",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"bin": {
"league": "bin/league"
},
"scripts": {
"test": "mocha --recursive",
"package": "pkg --target host --output league .",
"lint": "eslint src/** test/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxjoehnk/league-cli.git"
},
"keywords": [
"league-of-legends",
"lol",
"cli",
"champion.gg"
],
"author": "Max Jöhnk <maxjoehnk@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/maxjoehnk/league-cli/issues"
},
"homepage": "https://github.com/maxjoehnk/league-cli#readme",
"dependencies": {
"ansir": "github:maxjoehnk/ansir",
"chalk": "^2.1.0",
"cli-table": "^0.3.1",
"debug": "^3.0.1",
"js-yaml": "^3.9.1",
"league-api": "github:maxjoehnk/league-api",
"node-fetch": "^1.7.2",
"wcwidth": "^1.0.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.6.0",
"mocha": "^3.5.0",
"mockery": "^2.1.0",
"pkg": "^4.2.4",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0"
}
}