-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 KB
/
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
39
40
41
42
{
"name": "multikey-hash",
"version": "1.0.4",
"description": "Generates a hash based on function arguments",
"main": "multikey-hash.js",
"repository": {
"type": "git",
"url": "https://github.com/esco/multikey-hash.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/"
},
"keywords": [
"hash",
"key",
"multikey"
],
"author": "Esco Obong",
"license": "ISC",
"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.8.5",
"gulp-mdox": "0.0.2",
"gulp-mocha": "^1.1.1",
"gulp-yuidoc": "^0.1.2",
"istanbul": "^0.3.2",
"jshint-stylish": "^1.0.0",
"mocha": "^1.21.4"
},
"dependencies": {
"imurmurhash": "^0.1.4",
"simple-token": "^0.1.0"
}
}