UNPKG

async-await-queue

Version:

async/await simple priority queues

57 lines (56 loc) 1.74 kB
{ "name": "async-await-queue", "version": "2.1.4", "description": "async/await simple priority queues", "main": "cjs/index.cjs", "module": "es6/index.mjs", "types": "index.d.ts", "scripts": { "test": "mocha", "c8": "node_modules/.bin/c8 mocha", "lcov": "node_modules/.bin/c8 report --reporter=text-lcov > coverage/tests.lcov", "codecov": "curl -s https://codecov.io/bash | bash", "preversion": "npm test && eslint src/* test/*", "prepare": "rollup -c && tsc --emitDeclarationOnly -d --declarationDir . src/index.ts", "doc": "jsdoc -c .jsdoc.json es6/index.mjs -d docs", "version": "npm run prepare && npm run doc && git add package.json docs", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/mmomtchev/Queue.git" }, "keywords": [ "priority", "queue", "async", "await", "Promise" ], "author": "Momtchil Momtchev <momtchil@momtchev.com>", "license": "MIT", "bugs": { "url": "https://github.com/mmomtchev/Queue/issues" }, "homepage": "https://github.com/mmomtchev/Queue", "devDependencies": { "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-terser": "^0.4.0", "@rollup/plugin-typescript": "^11.0.0", "@types/chai": "^4.3.4", "@types/mocha": "^10.0.1", "@types/node": "^18.11.18", "@typescript-eslint/eslint-plugin": "^5.48.2", "@typescript-eslint/parser": "^5.48.2", "c8": "^7.12.0", "chai": "^4.3.7", "chai-as-promised": "^7.1.1", "eslint": "^7.32.0", "jsdoc": "^3.6.11", "mocha": "^10.2.0", "rollup": "^3.10.1", "rollup-plugin-modify": "^3.0.0", "ts-node": "^10.9.1", "typescript": "^4.9.4" } }