-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
9e33d18
commit a0bbec8
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"name": "typescript-collections", | ||
"version": "1.0.0", | ||
"description": "NPM package for typescript-collections written by Basarat (https://github.com/basarat/typescript-collections). It is a complete, fully tested data structure library written in TypeScript.", | ||
"main": "collections.js", | ||
"directories": { | ||
"doc": "doc", | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/basarat/typescript-collections.git" | ||
}, | ||
"keywords": [ | ||
"typescript", | ||
"generics", | ||
"data", | ||
"structures", | ||
"collections", | ||
"linked", | ||
"list", | ||
"dictionary", | ||
"multi", | ||
"dictionary", | ||
"binary", | ||
"search", | ||
"tree", | ||
"stack", | ||
"queue", | ||
"set", | ||
"bag", | ||
"binary", | ||
"heap", | ||
"priority", | ||
"queue", | ||
"array" | ||
], | ||
"author": "Basarat Ali Syed <bas@basarat.com> (http://basarat.com)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/basarat/typescript-collections/issues" | ||
}, | ||
"homepage": "https://github.com/basarat/typescript-collections" | ||
} |