mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
475 B
21 lines
475 B
13 years ago
|
{
|
||
|
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
||
|
"name": "fast-list",
|
||
|
"description": "A fast linked list (good for queues, stacks, etc.)",
|
||
|
"version": "1.0.1",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/isaacs/fast-list.git"
|
||
|
},
|
||
|
"main": "fast-list.js",
|
||
|
"dependencies": {},
|
||
|
"devDependencies": {
|
||
|
"bench": "~0.3.2",
|
||
|
"tap": "~0.1.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "node test.js",
|
||
|
"bench": "node bench.js"
|
||
|
}
|
||
|
}
|