UNPKG

vanilla-priority-queue

Version:

javascript implementation of a priority queue

38 lines (37 loc) 892 B
{ "name": "vanilla-priority-queue", "version": "2.0.2", "repository": "https://github.com/leekevinyg/js-priority-queue", "description": "javascript implementation of a priority queue", "main": "dist/index.js", "module": "dist/index.js", "files": [ "dist" ], "scripts": { "test": "jest", "coverage": "npm run test -- --coverage", "build": "rm -rf dist && NODE_ENV=production babel src/ --no-comments --presets minify --out-dir dist --copy-files --ignore __tests__,spec.js,test.js" }, "jest": { "collectCoverageFrom": [ "src/index.js" ] }, "keywords": [ "javascript", "priority queue", "queue", "heap", "heaps", "algorithms", "data structures" ], "author": "Kevin Lee", "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "babel-preset-minify": "^0.5.1", "jest": "^26.0.1" } }