forked from joshjung/hash-array
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 996 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
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "hasharray",
"author": "Joshua Jung <[email protected]>",
"license": "MIT",
"description": "A data structure that combines a hash and an array for fast dictionary lookup and traversal by complex keys.",
"version": "1.1.1",
"main": "index.js",
"url": "https://github.com/joshjung/hash-array",
"homepage": "https://github.com/joshjung/hash-array",
"email": "[email protected]",
"files": [
"dist",
"src",
"index.js",
"test"
],
"scripts": {
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"dependencies": {
"jclass": "^1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/joshjung/hash-array.git"
},
"keywords": [
"hash",
"hashtable",
"array",
"arraylist",
"dictionary"
]
}