-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "fastpriorityqueue",
"description": "Fast heap-based priority queue in JavaScript",
"keywords": [
"heap",
"binary heap",
"data structure",
"priority queue",
"performance"
],
"version": "0.7.4",
"repository": {
"type": "git",
"url": "git+https://github.com/lemire/FastPriorityQueue.js.git"
},
"main": "FastPriorityQueue.js",
"types": "FastPriorityQueue.d.ts",
"scripts": {
"test": "mocha unit/basictests.js",
"benchmark": "node benchmark/test.js"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lemire/FastPriorityQueue.js/issues"
},
"homepage": "https://github.com/lemire/FastPriorityQueue.js#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"binaryheapx": "^0.1.1",
"heap": "^0.2.7",
"js-heap": "^0.3.1",
"js-priority-queue": "^0.1.5",
"mocha": "^11.3.0",
"priority_queue": "^0.1.3",
"priorityqueuejs": "^2.0.0",
"qheap": "^1.4.0",
"queue-priority": "^1.0.0",
"stablepriorityqueue": "^0.1.2",
"yabh": "^1.2.0"
},
"author": "Daniel Lemire <lemire@gmail.com> (http://lemire.me/en/)"
}