-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 881 Bytes
/
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
{
"name": "ssb-json-parse-native",
"version": "0.1.0",
"description": "Node bindings to parse ssb message strings",
"main": "index.js",
"author": "Piet Geursen <[email protected]>",
"license": "LGPL-3.0",
"binary": {
"napi_versions": [
3
]
},
"dependencies": {
"prebuild-install": "^5.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ssbrs/ssb-legacy-msg-napi.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": {
"marky": "^1.2.1",
"prebuild": "pietgeursen/prebuild",
"pull-stream": "^3.6.1",
"tape": "^4.8.0"
}
}