-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.08 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
{
"name": "cli-progress",
"version": "3.12.0",
"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/npkgz/cli-progress",
"bugs": "https://github.com/npkgz/cli-progress/issues",
"repository": "npkgz/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.com)",
"license": "MIT",
"dependencies": {
"string-width": "^4.2.3"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-aenondynamics": "^0.2.0",
"mocha": "^9.2.2"
}
}