-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 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
{
"name": "ssb-flumeview-sql",
"version": "0.1.1",
"description": "Node bindings to a sql flumeview on a ssb database",
"main": "index.js",
"author": "Piet Geursen <pietgeursen@gmail.com>",
"license": "LGPL-3.0",
"binary": {
"napi_versions": [
3
]
},
"dependencies": {
"knex": "^0.16.3",
"prebuild-install": "^5.2.1",
"pull-pushable": "^2.2.0",
"rimraf": "^2.6.3",
"sqlite3": "^4.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/sunrise-choir/ssb-flumeview-sql.git"
},
"scripts": {
"install": "prebuild-install -r napi -t 3 || npm run build-rs",
"build-rs": "./build-native.sh",
"prebuild": "prebuild -r napi -t 3 --backend fakebuild --prepack ./build-native.sh",
"build-all": "npm run build-rs && npm run prebuild",
"test": "tape test/*.js"
},
"devDependencies": {
"prebuild": "pietgeursen/prebuild",
"pull-stream": "^3.6.1",
"ssb-config": "^3.2.3",
"ssb-keys": "^7.1.4",
"tape": "^4.8.0"
}
}