forked from ArkEcosystemArchive/ark-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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": "arkjs",
"version": "0.2.0",
"description": "JavaScript library for sending Ark transactions from the client or server",
"main": "index.js",
"scripts": {
"test": "mocha test/ark.js test/*/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArkEcosystem/ark-js.git"
},
"author": "FX Thoorens <[email protected]>, Guillaume Verbal <[email protected]>, Boris Povod <[email protected]>, Oliver Beddows <[email protected]>",
"license": "MIT",
"dependencies": {
"bigi": "^1.4.2",
"bip66": "^1.1.4",
"browserify-bignum": "=1.3.0-2",
"bs58check": "^1.1.1",
"buffer": "=4.9.1",
"bytebuffer": "=5.0.1",
"create-hmac": "^1.1.4",
"crypto-browserify": "=3.11.0",
"ecdsa": "^0.7.0",
"ecurve": "^1.0.5",
"js-nacl": "tonyg/js-nacl#6dc1417",
"mocha": "=3.1.0",
"randombytes": "^2.0.3",
"secp256k1": "^3.2.2",
"typeforce": "^1.10.3",
"wif": "^2.0.4"
},
"devDependencies": {
"proxyquire": "^1.7.10",
"sinon": "^1.17.7",
"should": "=11.1.0"
}
}