-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 918 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": "loadingbar",
"version": "1.1.0",
"description": "A customisable progressbar for CLI",
"license": "MIT",
"keywords": [
"app",
"progress",
"loading",
"loader",
"cli",
"cli-app",
"progress-bar",
"loadingbar"
],
"homepage": "https://github.com/shariati/loadingbar",
"author": "Amin Shariati",
"repository": "shariati/loadingbar",
"bin": "cli.js",
"files": [
"index.js",
"cli.js"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "standard && mocha"
},
"dependencies": {
"chalk": "^2.4.2",
"taketalk": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^9.1.3",
"standard": "^16.0.4"
}
}