UNPKG

node-console-progress-bar-tqdm

Version:

Progress bar in console for Node.js in the style of TQDM Python library

80 lines (79 loc) 2.26 kB
{ "name": "node-console-progress-bar-tqdm", "version": "1.0.4", "engines": { "node": ">= 16" }, "files": [ "./dist", "./src" ], "exports": { "types": "./dist/_types/index.d.ts", "require": "./dist/_cjs/index.js", "import": "./dist/_esm/index.js", "default": "./dist/_cjs/index.js" }, "main": "./dist/_cjs/index.js", "module": "./dist/_esm/index.js", "types": "./dist/_types/index.d.ts", "scripts": { "build": "node scripts/npm-build.js", "test": "node scripts/npm-test.js", "test:unit": "jest", "type-check": "tsc --noEmit", "lint": "eslint .", "start": "npm run start:run-src && npm run start:run-dist-cjs && npm run start:run-dist-esm", "start:run-src": "ts-node ./test/app/run-src.ts", "start:run-dist-cjs": "npm run build && node --enable-source-maps ./test/app/run-dist-cjs.js", "start:run-dist-esm": "npm run build && node --enable-source-maps ./test/app/run-dist-esm.mjs", "readme:generate-examples": "node scripts/extract-examples.js", "prepare": "husky" }, "homepage": "https://github.com/andre487/node-console-progress-bar-tqdm#readme", "repository": { "type": "git", "url": "https://github.com/andre487/node-console-progress-bar-tqdm" }, "keywords": [ "tqdm", "nodejs", "cli", "nodejs-cli", "cli-app", "terminal", "console", "progress bar", "progress", "indicator", "iterate", "iterator", "for", "for await", "loop", "typescript", "ts", "pure-js", "commonjs", "esmodules" ], "description": "Progress bar in console for Node.js in the style of TQDM Python library", "author": "andre487 <andrey.prokopyuk@gmail.com> (https://andre.life)", "man": "./README.md", "license": "MIT", "bugs": "https://github.com/andre487/node-console-progress-bar-tqdm/issues", "devDependencies": { "@typescript-eslint/eslint-plugin": "7.0.2", "@typescript-eslint/parser": "7.0.2", "colors": "1.4.0", "eslint": "8.56.0", "eslint-config-google": "0.14.0", "husky": "9.0.11", "jest": "29.7.0", "ts-jest": "29.1.2", "ts-node": "10.9.2", "tsc-alias": "1.8.8", "typescript": "5.3.3", "typescript-eslint": "7.0.2" } }