forked from btcz/btczjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "btczjs",
"version": "v2.0.0",
"description": "Dead easy to use BitcoinZ JavaScript based library",
"main": "./lib/index.js",
"repository": "https://github.com/btcz/btczjs",
"author": "BitcoinZ Community <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "8.0.2",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-stage-2": "6.24.1",
"bs58": "4.0.1",
"bs58check": "2.0.2",
"chai": "4.1.0",
"create-hash": "1.1.3",
"create-hmac": "1.1.6",
"elliptic": "6.4.0",
"eslint": "4.10.0",
"eslint-config-standard": "10.2.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"flow-bin": "0.51.0",
"int64-buffer": "0.1.9",
"libsodium-wrappers-sumo": "0.5.2",
"mocha": "5.2.0",
"mocha-webpack": "1.0.1",
"pushdata-bitcoin": "1.0.1",
"safe-buffer": "5.1.1",
"secp256k1": "3.3.0",
"varint": "5.0.0",
"varuint-bitcoin": "1.0.4",
"webpack": "3.8.1",
"yargs": "10.0.3"
},
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel --watch src/ -d lib/",
"clean": "rm -rf ./lib && mkdir lib",
"test": "mocha"
},
"devDependencies": {}
}