-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"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"
}
}