This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
103 lines (103 loc) · 2.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "litecore",
"version": "4.1.10",
"description": "A platform to build bitcoin and blockchain-based applications.",
"author": "BitPay <dev@bitpay.com>",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/** --recursive",
"build-deb": "./scripts/build-deb"
},
"bin": {
"litecore": "./bin/litecore",
"litecored": "./bin/litecored"
},
"contributors": [
{
"name": "Charlie Lee",
"email": "coblee@litecoin.org"
},
{
"name": "Daniel Cousens",
"email": "bitcoin@dcousens.com"
},
{
"name": "Esteban Ordano",
"email": "eordano@gmail.com"
},
{
"name": "Gordon Hall",
"email": "gordon@bitpay.com"
},
{
"name": "Jeff Garzik",
"email": "jgarzik@bitpay.com"
},
{
"name": "Kyle Drake",
"email": "kyle@kyledrake.net"
},
{
"name": "Manuel Araoz",
"email": "manuelaraoz@gmail.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
},
{
"name": "Ryan X. Charles",
"email": "ryanxcharles@gmail.com"
},
{
"name": "Stefan Thomas",
"email": "moon@justmoon.net"
},
{
"name": "Stephen Pair",
"email": "stephen@bitpay.com"
},
{
"name": "Wei Lu",
"email": "luwei.here@gmail.com"
},
{
"name": "Loshan T",
"email": "loshan1212@gmail.com"
}
],
"keywords": [
"litecoin",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/litecoin-project/litecore.git"
},
"browser": {
"request": "browser-request"
},
"dependencies": {
"litecore-lib": "^0.13.22",
"litecore-node": "^3.1.11",
"insight-lite-api": "^0.4.4",
"insight-lite-ui": "^0.4.2"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3"
}
}