-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
57 lines (57 loc) · 1.22 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "progress-estimator",
"version": "0.3.1",
"description": "Animated progress bars with estimated durations",
"author": "Brian Vaughn <brian.david.vaughn@gmail.com>",
"license": "MIT",
"main": "src/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bvaughn/progress-estimator.git"
},
"bugs": {
"url": "https://github.com/bvaughn/progress-estimator/issues"
},
"scripts": {
"lint": "eslint 'src/**/*.js' && tsc --project types",
"prettier": "prettier --write 'src/**/*.js' 'types/**/*.ts'"
},
"files": [
"src",
"types"
],
"keywords": [
"ascii",
"busy",
"cli",
"console",
"duration",
"idle",
"indicator",
"list",
"loading",
"progress",
"promise",
"task",
"term",
"terminal",
"timing",
"unicode",
"wait"
],
"dependencies": {
"chalk": "^2.4.1",
"cli-spinners": "^1.3.1",
"humanize-duration": "^3.15.3",
"log-update": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.15.2",
"typescript": "^3.1.6"
}
}