forked from jasonsjones/doubly-linked-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 883 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
{
"name": "@windfish-studio/dbly-linked-hashtable-list",
"version": "0.3.3",
"description": "Javascript implementation of a doubly linked-list data structure, with built-in hashtable for O(1) lookups and removals",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm run lint",
"test": "nyc mocha",
"lint": "eslint index.js lib/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sikanrong/doubly-linked-list.git"
},
"keywords": [
"doubly linked-list",
"linked list",
"hashtable",
"hash table",
"data structure"
],
"author": "Jason Jones, Alexander Pilafian",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.16.0",
"mocha": "^5.0.0",
"nyc": "^11.4.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
}
}