-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
23 lines (23 loc) · 857 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
{
"name": "jshashtable",
"description": "jshashtable is a JavaScript implementation of a hash table. It associates objects (\"keys\") with other objects (\"values\"). Each key is associated with precisely one value. \"Objects\" here is used loosely to mean any JavaScript object or value.",
"main": "jshashtable.js",
"licence": "http://www.apache.org/licenses/LICENSE-2.0",
"author": "Tim Down <[email protected]>",
"homepage": "http://www.timdown.co.uk/jshashtable/index.html",
"gitHead": "fa9e9ab51de889e0dd4a66d6ee7088c57ef5db4a",
"version": "0.1.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/paulhayes/jshashtable-nodejs.git"
},
"keywords": [
"hashtable",
"dictionary",
"jshashtable"
],
"license": "APACHE-2.0"
}