-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 887 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
43
44
{
"name": "@gribnoysup/wunderbar",
"version": "1.0.2",
"description": "Simple horizontal bar chart drawer for your terminal",
"bin": "bin/index.js",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"test": "jest --env node"
},
"keywords": [
"nodejs",
"cli",
"bar",
"chart",
"bar-chart",
"terminal",
"library"
],
"author": "Sergey Petushkov <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.18.2",
"eslint-plugin-jest": "^21.13.0",
"jest": "^22.4.2",
"strip-ansi": "^4.0.0"
},
"dependencies": {
"chalk": "^2.3.2",
"mri": "^1.1.0",
"randomcolor": "^0.5.3",
"window-size": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gribnoysup/wunder-bar.git"
},
"publishConfig": {
"access": "public"
}
}