-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 973 Bytes
/
package.json
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
43
44
{
"name": "papq",
"version": "0.1.4",
"description": "Partitioned Async Priority Queue",
"main": "dist/index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebigredgeek/papq.git"
},
"keywords": [
"async",
"priority",
"queue",
"queue",
"partition",
"datastructure"
],
"author": "Andrew E. Rhyne",
"license": "MIT",
"bugs": {
"url": "https://github.com/thebigredgeek/papq/issues"
},
"homepage": "https://github.com/thebigredgeek/papq#readme",
"devDependencies": {
"@types/bluebird": "^3.5.23",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.3",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tsc": "^1.20150623.0",
"typescript": "^3.0.1"
},
"dependencies": {
"extendable-error": "^0.1.5",
"qheap": "^1.4.0",
"uuid": "^3.3.2"
}
}