UNPKG

taskqueuemanager

Version:

Task Queue Manager is a typescript library for handling and timing task.

47 lines (46 loc) 1.22 kB
{ "name": "taskqueuemanager", "version": "1.0.3", "description": "Task Queue Manager is a typescript library for handling and timing task.", "main": "lib/TaskManager.js", "dependencies": {}, "devDependencies": { "@types/es6-promise": "^3.3.0", "@types/node": "^14.0.27", "prettier": "^2.0.5", "ts-node": "^8.10.2", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^3.9.7" }, "scripts": { "build": "tsc", "start": "ts-node demo.ts", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/triktron/TaskQueueManager.git" }, "keywords": [ "typescript", "tasks", "queue", "timed" ], "author": "Triktron", "license": "MIT", "bugs": { "url": "https://github.com/triktron/TaskQueueManager/issues" }, "homepage": "https://github.com/triktron/TaskQueueManager#readme", "files": [ "lib/**/*" ] }