@labset/task-pool-executor
Version:
task pool executor
61 lines (60 loc) • 1.54 kB
JSON
{
"name": "@labset/task-pool-executor",
"version": "2.3.0",
"description": "task pool executor",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"lint": "eslint src/ --ext .ts,.tsx,.js",
"example:cli-progress": "ts-node examples/with-cli-progress.ts"
},
"files": [
"dist"
],
"main": "dist/index",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/viqueen/task-pool-executor.git"
},
"keywords": [
"task",
"pool",
"executor"
],
"author": "Hasnae R.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/viqueen/task-pool-executor/issues"
},
"homepage": "https://github.com/viqueen/task-pool-executor#readme",
"devDependencies": {
"@labset-eslint/eslint-plugin": "^1.2.0",
"@types/cli-progress": "^3.11.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check"
}
},
"dependencies": {
"ansi-colors": "^4.1.3",
"cli-progress": "^3.11.2"
}
}