36 lines
823 B
JSON
36 lines
823 B
JSON
{
|
|
"name": "priority-queue",
|
|
"version": "0.2.1",
|
|
"description": "functional, data oriented priority queue that doesn't suck",
|
|
"main": "priority-queue.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "npm-run-all -s test:*",
|
|
"test:unit": "mocha test.js",
|
|
"test:fuzz": "node test-fuzz.js",
|
|
"prepublishOnly": "npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mreinstein/priority-queue.git"
|
|
},
|
|
"keywords": [
|
|
"priority",
|
|
"queue",
|
|
"heap"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mreinstein/priority-queue/issues"
|
|
},
|
|
"homepage": "https://github.com/mreinstein/priority-queue#readme",
|
|
"devDependencies": {
|
|
"mocha": "^10.0.0",
|
|
"npm-run-all": "^4.1.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.17"
|
|
}
|
|
}
|