-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 963 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
34
35
36
{
"name": "zelcashjs",
"version": "1.0.1",
"description": "Dead easy to use Zelcash JavaScript based library",
"main": "./lib/index.js",
"repository": "https://github.com/TheTrunk/zelcashjs.git",
"author": "The Trunk",
"license": "MIT",
"dependencies": {
"bigi": "^1.4.2",
"bs58": "^4.0.1",
"bs58check": "^2.0.2",
"create-hash": "^1.1.3",
"create-hmac": "^1.1.6",
"int64-buffer": "^0.1.9",
"libsodium-sumo": "^0.5.2",
"libsodium-wrappers-sumo": "^0.5.2",
"safe-buffer": "^5.1.1",
"secp256k1": "^3.3.0",
"varuint-bitcoin": "^1.0.4"
},
"scripts": {
"build": "babel src/ -d lib/",
"watch-build": "babel --watch src/ -d lib/",
"cleanup": "rm -rf ./lib && mkdir lib",
"prepublic": "yarn run build",
"test": "mocha"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.0",
"flow-bin": "^0.51.0",
"mocha": "^3.4.2"
}
}