forked from npkgz/cli-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.14 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
{
"name": "cli-progress",
"version": "3.8.2",
"description": "easy to use progress-bar for command-line/terminal applications",
"keywords": [
"cli",
"tty",
"terminal",
"progress",
"progressbar",
"multibar",
"bar",
"status",
"statusbar",
"utility",
"widget"
],
"homepage": "https://github.com/AndiDittrich/Node.CLI-Progress",
"bugs": "https://github.com/AndiDittrich/Node.CLI-Progress/issues",
"repository": "AndiDittrich/Node.CLI-Progress",
"files": [
"cli-progress.js",
"lib/",
"presets/"
],
"scripts": {
"lint": "eslint lib/**.js",
"pretest": "npm run lint",
"test": "mocha test/**/*.test.js"
},
"engines": {
"node": ">=4"
},
"main": "./cli-progress.js",
"author": "Andi Dittrich (https://andidittrich.de)",
"license": "MIT",
"dependencies": {
"colors": "^1.1.2",
"string-width": "^4.2.0"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-aenondynamics": "^0.2.0",
"mocha": "^7.1.1"
}
}