-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
48 lines (48 loc) · 941 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
45
46
47
48
{
"name": "@gribnoysup/wunderbar",
"version": "2.2.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": "^5.16.0",
"eslint-plugin-jest": "^22.5.1",
"jest": "^24.8.0",
"strip-ansi": "^4.0.0"
},
"dependencies": {
"chalk": "^2.4.2",
"mri": "^1.1.4",
"numeral": "^2.0.6",
"pad": "^3.0.1",
"randomcolor": "^0.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gribnoysup/wunderbar.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 6"
}
}