{
    "name": "task-easy",
    "version": "1.0.1",
    "description": "A simple, customizable, and lightweight priority queue for promise based tasks.",
    "main": "./src/index.js",
    "types": "./src/index.d.ts",
    "scripts": {
        "test": "npm run lint && jest && npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
        "test:local": "npm run lint && jest && npm run test:coverage",
        "test:watch": "jest --watch",
        "test:coverage": "jest --coverage",
        "test:detailed": "jest --verbose",
        "test:update": "jest -u",
        "lint": "./node_modules/.bin/eslint . --ext .js",
        "lint:fix": "npm run lint -- --fix"
    },
    "keywords": [
        "queue",
        "task",
        "worker",
        "job",
        "in-memory",
        "priority",
        "manager",
        "utility",
        "promise",
        "Async"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/cmseaton42/task-easy"
    },
    "author": "Canaan Seaton",
    "license": "MIT",
    "devDependencies": {
        "coveralls": "^3.0.9",
        "eslint": "^6.8.0",
        "eslint-plugin-jest": "^23.4.0",
        "jest": "^24.9.0"
    }
}
