-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.03 KB
/
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
45
{
"name": "binaryheap-array",
"description": "Binary Heap Data Structure using an array like implementation, super fast and easy to use",
"main": "src/BinaryHeap.js",
"scripts": {
"commit": "git status && git-cz",
"eslint": "eslint src/*.js",
"test": "nyc jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/KhaledMohamedP/BinaryHeap.git"
},
"version": "1.0.3",
"keywords": [
"data",
"structure",
"binary",
"tree",
"binary",
"heap",
"binaryheap",
"priority",
"queue"
],
"author": "Khaled Mohamed",
"license": "MIT",
"bugs": {
"url": "https://github.com/KhaledMohamedP/BinaryHeap/issues"
},
"homepage": "https://github.com/KhaledMohamedP/BinaryHeap#readme",
"devDependencies": {
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.6.0",
"istanbul": "0.4.5",
"jasmine": "3.5.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"dependencies": {
"nyc": "14.1.1"
}
}