This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
75 lines (75 loc) · 1.79 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
70
71
72
73
74
75
{
"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:browserify": "browserify index.js -o app.js",
"clean:browserify": "shx rm app.js",
"build:docs": "jsdoc -c jsdoc.json",
"clean:docs": "shx rm -r ./docs",
"lint": "eslint .",
"test": "mocha test/ark.js test/*/*"
},
"directories": {
"doc": "./doc",
"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.5",
"browserify-bignum": "^1.3.0-2",
"bs58check": "^2.0.2",
"buffer": "^5.0.8",
"bytebuffer": "^5.0.1",
"create-hash": "^1.1.3",
"create-hmac": "^1.1.6",
"crypto-browserify": "^3.12.0",
"ecdsa": "^0.7.0",
"ecurve": "^1.0.5",
"js-nacl": "^1.2.2",
"randombytes": "^2.0.5",
"secp256k1": "^3.3.0",
"typeforce": "^1.11.7",
"wif": "^2.0.6"
},
"devDependencies": {
"browserify": "^14.4.0",
"eslint": "^4.10.0",
"jsdoc": "^3.5.5",
"marked": "^0.3.12",
"mocha": "^4.0.1",
"proxyquire": "^1.8.0",
"should": "^13.1.3",
"shx": "^0.2.2",
"sinon": "^4.1.1",
"sinon-test": "^2.1.2"
}
}