-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 825 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 825 Bytes
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
{
"name": "sorted-linked-list",
"description": "An ADT implemenation of a sorted, singly-linked, linked-list",
"version": "1.0.6",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/markpete/SortedLinkedList.git"
},
"author": "Mark Peterson <mark.peterson@live.com>",
"license": "MIT",
"keywords": [
"linked list",
"sorted linked list",
"skip list",
"data structure",
"abstract data type",
"adt"
],
"bugs": {
"url": "https://github.com/markpete/SortedLinkedList/issues"
},
"homepage": "https://github.com/markpete/SortedLinkedList",
"scripts": {
"test": "mocha -R spec"
},
"devDependencies": {
"chai": "^3.5.0",
"chalk": "^1.1.3",
"collections": "^5.0.6",
"mocha": "^10.6.0",
"random-string": "^0.1.2"
}
}