From 3635c74c1a12d86492ba7a7661827db599901d53 Mon Sep 17 00:00:00 2001 From: Una Ma Date: Thu, 26 Oct 2017 21:13:35 +0800 Subject: [PATCH] Create package.json --- package.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..fc3875f --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "jshashtable.js", + "description": "A standalone JavaScript implementation of hash table with arbitrary keys", + "version": "3.0", + "main": [ + "hashtable.js", + "hashset.js" + ], + "license": "Apache-2.0", + "author": { + "name": "Tim Down", + "email": "tim@timdown.co.uk" + }, + "homepage": "http://www.timdown.co.uk/jshashtable/", + "repository": { + "type": "git", + "url": "https://github.com/timdown/jshashtable.git" + }, + "keywords": [ + "javascript", + "hash", + "hashmap" + "hastable", + "hashset" + ] +}