-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "progress-bar-capture",
"version": "1.0.0",
"copyright": "Copyright © 2023 Marina Egner",
"description": "Simple progress bar for CLI including a simple capture function that handles console input while progress bar is shown",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "ES2020",
"type": "module",
"scripts": {
"test": "tsc -b && mocha test/ --recursive",
"prepublish": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SheepCreativeSoftware/progress-bar-capture.git"
},
"keywords": [
"cli",
"progress-bar",
"logger"
],
"author": "Marina Egner",
"engines": {
"node": ">=20.10.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SheepCreativeSoftware/progress-bar-capture/issues"
},
"homepage": "https://github.com/SheepCreativeSoftware/progress-bar-capture#readme",
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"assert": "^2.1.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"record-stdstreams": "^3.0.73",
"typescript": "^5.3.3"
}
}