From a0bbec84426a8743a598d57c7be4d61c224cddb7 Mon Sep 17 00:00:00 2001 From: Nishanth Samala Date: Tue, 12 May 2015 16:37:41 -0500 Subject: [PATCH] Added package.json for NPM registry --- package.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..a89ad81 --- /dev/null +++ b/package.json @@ -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 (http://basarat.com)", + "license": "MIT", + "bugs": { + "url": "https://github.com/basarat/typescript-collections/issues" + }, + "homepage": "https://github.com/basarat/typescript-collections" +}