-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
39 lines (39 loc) · 992 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
{
"name": "js-data-structures",
"version": "1.1.2",
"description": "A collection of data structures",
"scripts": {
"test": "jasmine-node ."
},
"repository": {
"type": "git",
"url": "https://github.com/gwtw/js-data-structures.git"
},
"keywords": [
"algorithm",
"computer science",
"data structure",
"heap",
"tree"
],
"author": "Daniel Imms (http://www.growingwiththeweb.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gwtw/js-data-structures/issues"
},
"homepage": "https://github.com/gwtw/js-data-structures",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-eslint": "^17.0.0",
"grunt-jasmine-node-coverage": "^0.4.1",
"grunt-jsdoc": "^1.0.0",
"jasmine-node": "^1.14.5",
"jasmine-reporters": ">=0.2.0 <2.0.0"
},
"dependencies": {
"@tyriar/avl-tree": "^1.0.0",
"@tyriar/binary-heap": "^1.0.0",
"@tyriar/binomial-heap": "^1.0.0",
"@tyriar/fibonacci-heap": "^1.0.0"
}
}