-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "minhash-node-rs",
"version": "0.1.2",
"description": "",
"main": "lib/index.js",
"author": "David Xu <[email protected]>",
"license": "MIT",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.8"
},
"engines": {
"node": ">=10.12.0"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release",
"package": "node-pre-gyp package",
"build": "neon build",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish"
},
"binary": {
"module_name": "index",
"host": "https://github.com/wherefortravel/minhash-node-rs/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native",
"pkg_path": "."
},
"files": [
"native/index.node",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wherefortravel/minhash-node-rs.git"
},
"devDependencies": {
"neon-cli": "0.10.0",
"node-pre-gyp-github": "^1.4.3"
}
}