forked from datastructures-js/datastructures-js
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "datastructures-js",
"version": "5.0.4",
"description": "data structures implementation in javascript",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"es6 data structures",
"javascript data structures",
"data structures",
"data structures javascript",
"data structures js",
"stack",
"es6 stack",
"queue",
"es6 queue",
"priority queue",
"priorityqueue",
"set",
"linked list",
"linkedlist",
"doubly linked list",
"doublylinkedlist",
"binary search tree",
"bst",
"graph",
"es6 graph",
"directed graph",
"directedgraph"
],
"repository": {
"type": "git",
"url": "https://github.com/eyas-ranjous/datastructures-js.git"
},
"author": "Eyas Ranjous <eyas.ranjous@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/eyas-ranjous/datastructures-js#readme",
"devDependencies": {
"chai": "^4.1.2",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"jshint-stylish": "^2.2.1",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.3.0"
}
}