-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.22 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.22 KB
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
39
{
"name": "superhash",
"version": "1.1.1",
"description": "HashMap that supports using one or more keys of any type.",
"main": "superhash.js",
"repository": {
"type": "git",
"url": "https://github.com/esco/superhash.git"
},
"scripts": {
"test": "mocha test/*-test.js --require test/config.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --ignore-leaks --require test/config test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --ignore-leaks --require test/config test/"
},
"author": "Esco Obong",
"license": "MIT",
"keywords": "hash, hashmap, map, dictionary, set, hash table, multi-key, multikey, datastructure",
"devDependencies": {
"chai": "^1.9.2",
"es6-collections": "^0.3.4",
"grunt": "^0.4.5",
"gulp": "^3.8.8",
"gulp-bench": "^1.1.0",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.3.1",
"gulp-jshint": "^1.9.0",
"gulp-mdox": "0.0.2",
"gulp-mocha": "^1.1.1",
"hashmap": "^1.1.0",
"istanbul": "^0.3.2",
"jshint-stylish": "^1.0.0",
"mocha": "^1.21.4",
"sinon": "*",
"sinon-chai": "*"
},
"dependencies": {
"multikey-hash": "^1.0.1"
}
}