-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 900 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
{
"name": "mybinaryheap",
"email": "[email protected]",
"url": "https://github.com/bouldeterre/myBinaryHeap",
"homepage": "https://github.com/bouldeterre/myBinaryHeap",
"author": "Emonides Pierre-Emmanuel (https://github.com/bouldeterre)",
"repository": "bouldeterre/myBinaryHeap",
"bugs": {
"url": "https://github.com/bouldeterre/myBinaryHeap/issues"
},
"files": ["binaryheap.js"],
"version": "1.0.8",
"description":
"This is a simple binary heap implementation in nodejs, without dependencies",
"keywords": ["binary", "heap", "binaryheap", "sorted"],
"main": "binaryheap.js",
"scripts": {
"test": "mocha",
"doc": "jsdoc.cmd -d ./doc Topn.js binaryheap.js flatten.js"
},
"author": "Emonides Pierre-Emmanuel",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"lodash": "^4.17.5",
"mocha": "^5.0.1"
},
"dependencies": {}
}