-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "owl-go",
"version": "1.2.2",
"description": "Command line interface for enjoying Oveerwatch League",
"main": "lib/cli.js",
"bin": {
"owl-go": "lib/cli.js",
"og": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js -p",
"clean": "rimraf lib packed",
"dev": "webpack --config webpack.config.js -d -w",
"pack": "pkg . --out-path packed",
"prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - lib/cli.js > temp && mv temp lib/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acupoftee/OverwatchLeagueGO.git"
},
"keywords": [
"overwatch",
"overwatchleague",
"blizzard",
"esports",
"cli",
"owl"
],
"engines": {
"node": ">=6.0.0"
},
"author": "Tee Diang",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/acupoftee/OverwatchLeagueGO/issues"
},
"homepage": "https://github.com/acupoftee/OverwatchLeagueGO#readme",
"dependencies": {
"async-to-gen": "^1.4.0",
"blessed": "^0.1.81",
"cfonts": "^2.4.2",
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"commander": "^2.19.0",
"didyoumean": "^1.2.1",
"is-async-supported": "^1.2.0",
"node-emoji": "^1.10.0",
"ora": "^3.2.0",
"owl-colors": "0.0.10",
"request": "^2.88.0",
"stringz": "^1.0.0",
"update-notifier": "^2.5.0",
"wide-align": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.1",
"pkg": "^4.3.7",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
},
"pkg": {
"scripts": [
"lib/*.js"
],
"targets": [
"node8-macos",
"node8-linux",
"node8-win"
]
}
}