-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 927 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
39
40
{
"name": "murmur3hash-wasm",
"version": "1.0.1",
"description": "Murmur3 Hash implemented in hand-written WASM",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"nanoassert": "^2.0.0"
},
"devDependencies": {
"standard": "^12.0.1",
"tape": "^4.11.0",
"wat2js": "^2.1.1",
"wat2wasm": "^1.0.2"
},
"standard": {
"globals": [
"WebAssembly",
"atob"
]
},
"scripts": {
"compile": "wat2js murmur3.wat -o murmur3.js",
"pretest": "standard",
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperdivision/murmur3hash-wasm.git"
},
"keywords": [],
"author": "Emil Bay <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyperdivision/murmur3hash-wasm/issues"
},
"homepage": "https://github.com/hyperdivision/murmur3hash-wasm#readme"
}