-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
38 lines (38 loc) · 922 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
37
38
{
"name": "hashtable",
"version": "2.0.2",
"description": "Native HashTable and ES6 compatible Map for Node.js",
"main": "./index.js",
"keywords": [
"hash",
"map",
"hashmap",
"hashtable",
"container"
],
"maintainers": [{
"name": "Chad Walker",
"email": "[email protected]",
"url": "https://github.com/chad3814"
}],
"author": {
"name": "Isaac Wagner",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/chad3814/node-hashtable.git"
},
"license": "MIT",
"dependencies": {
"nan": "latest"
},
"devDependencies": {
"test-more": "~0.1.1",
"runtests": "~0.1.1"
},
"scripts": {
"install": "node-gyp configure build",
"test": "runtests test/hashtable.js test/keys.js"
}
}