forked from lovell/farmhash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
51
52
{
"name": "farmhash",
"version": "3.0.0",
"author": "Lovell Fuller <[email protected]>",
"contributors": [
"Matt Ranney <[email protected]>",
"Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)"
],
"description": "Node.js implementation of FarmHash, Google's family of very fast hash functions",
"scripts": {
"install": "prebuild-install --runtime napi || prebuild-install || node-gyp rebuild",
"test": "semistandard && cc && node test/unit && prebuild-ci"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/lovell/farmhash"
},
"keywords": [
"farmhash",
"hash",
"cityhash",
"murmurhash",
"fingerprint"
],
"dependencies": {
"node-addon-api": "^1.6.3",
"prebuild-install": "^5.3.0"
},
"devDependencies": {
"cc": "^1.0.2",
"prebuild": "^9.0.0",
"prebuild-ci": "^3.1.0",
"semistandard": "^13.0.1"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"binary": {
"napi_versions": [
3
]
},
"cc": {
"linelength": "120",
"ignore": [
"node_modules",
"src/upstream"
]
}
}