-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
63 lines (63 loc) · 1.27 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "farmhash",
"version": "4.0.1",
"author": "Lovell Fuller <npm@lovell.info>",
"contributors": [
"Matt Ranney <mjr@ranney.com>",
"Jonas Hermsmeier <jhermsmeier@gmail.com> (https://jhermsmeier.de)"
],
"description": "Node.js implementation of FarmHash, Google's family of very fast hash functions",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "semistandard && cpplint && node test/unit && tsd"
},
"main": "index.js",
"files": [
"binding.gyp",
"index.d.ts",
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/lovell/farmhash"
},
"keywords": [
"farmhash",
"hash",
"cityhash",
"murmurhash",
"fingerprint"
],
"dependencies": {
"node-addon-api": "^8.1.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/node": "*",
"cc": "^3.0.1",
"node-gyp": "^10.2.0",
"prebuild": "^13.0.1",
"semistandard": "^17.0.0",
"tsd": "^0.31.2"
},
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"binary": {
"napi_versions": [
8
]
},
"config": {
"runtime": "napi",
"target": 8
},
"cc": {
"linelength": "120",
"ignore": [
"node_modules",
"src/upstream"
]
}
}