-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 936 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
{
"name": "native",
"version": "1.0.1",
"description": "A Node.js binding for a Rust-based Equihash solution verifier.",
"main": "index.js",
"scripts": {
"preinstall": "bash -c 'if ! command -v rustc &>/dev/null || ! command -v cargo &>/dev/null; then curl https://sh.rustup.rs -sSf | sh; rustup default nightly; rustup update nightly; fi' && bash -c 'if ! command -v neon &>/dev/null; then npm i -g neon-cli; fi'",
"install": "neon build --release",
"postinstall": "echo 'Equihash Node Binding is ready to use!'",
"test": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pastelnetwork/equihash-node-binding"
},
"keywords": [
"equihash",
"blockchain",
"cryptocurrency",
"proof-of-work",
"node-binding"
],
"author": "Jeffrey Emanuel",
"license": "ISC",
"devDependencies": {
"cargo-cp-artifact": "^0.1",
"neon-cli": "^0.10.1"
}
}