-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "farmhash",
"version": "5.0.1",
"author": "Lovell Fuller <npm@lovell.info>",
"contributors": [
"Matt Ranney <mjr@ranney.com>",
"Jonas Hermsmeier <jhermsmeier@gmail.com> (https://jhermsmeier.de)"
],
"description": "Node-API implementation of FarmHash, Google's family of very fast hash functions",
"scripts": {
"build": "node-gyp rebuild --directory=src",
"lint": "biome check && cpplint src/*.cc && tsd",
"test": "node test/unit"
},
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"files": [
"build",
"index.d.ts",
"platform.js"
],
"preferUnplugged": true,
"repository": {
"type": "git",
"url": "git://github.com/lovell/farmhash.git"
},
"keywords": [
"farmhash",
"hash",
"cityhash",
"murmurhash",
"fingerprint"
],
"dependencies": {
"detect-libc": "^2.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@cpplint/cli": "^0.1.0",
"@types/node": "*",
"node-addon-api": "^8.5.0",
"node-gyp": "^11.4.2",
"tsd": "^0.33.0"
},
"license": "Apache-2.0",
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
}
}