forked from karanlyons/murmurHash3.js
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "murmurhash3js",
"version": "3.0.1",
"homepage": "http://pid.github.io/murmurHash3js/",
"description": "A javascript implementation of MurmurHash3's x86 hashing algorithms.(Browser&Server)",
"keywords": [
"murmurhash3",
"hash"
],
"author": {
"name": "Karan Lyons",
"email": "karan@karanlyons.com",
"url": "http://karanlyons.com"
},
"contributors": [
{
"name": "Sascha Droste",
"email": "pid@posteo.net",
"url": "https://github.com/pid/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pid/murmurHash3js/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/pid/murmurHash3js.git"
},
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-bumpup": "^0.6.2",
"grunt-contrib-jshint": "^0.11.1",
"grunt-contrib-uglify": "^0.8.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-release": "^0.12.0",
"grunt-text-replace": "^0.4.0",
"mocha": "^2.2.1",
"should": "^5.2.0"
},
"engines": {
"node": ">=0.10.0"
}
}