-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "@strangerlabs/tantivy",
"version": "0.1.2",
"description": "NodeJS bindings for Tantivy",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "neon build --release",
"build-electron": "npx electron-build-env neon build tantivy",
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release",
"package": "node-pre-gyp package",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish",
"start": "nodemon -e \"rs toml\" -x \"neon build --release\""
},
"author": "Stranger Labs",
"contributors": [
{
"name": "StJohn Giddy",
"email": "[email protected]",
"url": "https://strangerlabs.io"
}
],
"license": "MIT",
"devDependencies": {
"electron-build-env": "^0.2",
"electron-rebuild": "^1.8",
"neon-cli": "^0.3",
"nodemon": "^1"
},
"dependencies": {
"@amilajack/node-pre-gyp": "github:amilajack/node-pre-gyp#neon-compat",
"node-pre-gyp-github": "^1.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strangerlabs/tantivy.git"
},
"files": [
"native"
],
"binary": {
"module_name": "index",
"module_path": "./native",
"host": "https://github.com/strangerlabs/tantivy/releases/download/",
"remote_path": "{version}",
"package_name": "index-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"pkg_path": "."
}
}