-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
43
44
45
46
47
48
49
50
{
"name": "node-hashes",
"version": "0.1.0",
"description": "some of the more common uses of hash functions",
"main": "index.js",
"scripts": {
"test": "mocha --require test/support/env --check-leaks --reporter spec --bail test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --check-leaks --reporter spec test/"
},
"engines": {
"node": ">= 0.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liushoukai/node-hashes.git"
},
"keywords": [
"hash",
"hashes",
"algorithm",
"RS",
"JS",
"PJW",
"ELF",
"BKDR",
"SDBM",
"DJB",
"DEK",
"BP",
"FNV",
"AP",
"MurmurHash3"
],
"author": "liushoukai",
"license": "MIT",
"bugs": {
"url": "https://github.com/liushoukai/node-hashes/issues"
},
"homepage": "https://github.com/liushoukai/node-hashes#readme",
"devDependencies": {
"benchmark": "^2.0.0",
"chai": "^3.3.0",
"istanbul": "^0.4.0",
"mocha": "*"
},
"dependencies": {
"nan": "^2.2.0",
"node-gyp": "^3.4.0"
}
}