forked from ArkEcosystemArchive/ark-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "arkjs",
"version": "0.2.1",
"description": "JavaScript library for sending Ark transactions from the client or server",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"build:docs": "jsdoc -c jsdoc.json",
"clean": "shx rm -r ./docs",
"lint": "eslint .",
"test": "mocha test/ark.js test/*/*"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArkEcosystem/ark-js.git"
},
"homepage": "https://github.com/ArkEcosystem/ark-js",
"keywords": [
"api",
"ark",
"blockchain",
"client",
"cryptocurrency",
"javascript",
"server",
"transaction"
],
"bugs": "https://github.com/ArkEcosystem/ark-js/issues",
"contributors": [
"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-hash": "=1.1.3",
"create-hmac": "^1.1.4",
"crypto-browserify": "=3.11.0",
"ecdsa": "^0.7.0",
"ecurve": "^1.0.5",
"js-nacl": "tonyg/js-nacl#6dc1417",
"randombytes": "^2.0.3",
"secp256k1": "^3.2.2",
"typeforce": "^1.10.3",
"wif": "^2.0.4"
},
"devDependencies": {
"eslint": "^4.2.0",
"jsdoc": "^3.5.5",
"mocha": "=3.1.0",
"proxyquire": "^1.7.10",
"should": "=11.1.0",
"shx": "^0.2.2",
"sinon": "^1.17.7"
}
}