forked from submarineswaps/swaps-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"author": "Alex Bosworth",
"dependencies": {
"@alexbosworth/request": "2.88.3",
"async": "3.2.2",
"asyncjs-util": "1.2.7",
"bchaddrjs": "0.5.2",
"bip32": "2.0.6",
"bip39": "3.0.4",
"bip65": "1.0.3",
"bip66": "1.1.5",
"bitcoin-ops": "1.4.1",
"bitcoinjs-lib": "5.2.0",
"bn.js": "5.2.0",
"body-parser": "1.19.0",
"browserify-middleware": "8.1.1",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "4.17.1",
"helmet": "4.6.0",
"ln-service": "53.1.2",
"lodash": "4.17.21",
"morgan": "1.10.0",
"node-cache": "5.1.2",
"pug": "3.0.2",
"pushdata-bitcoin": "1.0.1",
"random-lib": "3.0.0",
"redis": "3.1.2",
"serve-favicon": "2.5.0",
"uuid": "8.3.2",
"varuint-bitcoin": "1.1.2"
},
"description": "Tools for swaps with Lightning",
"devDependencies": {
"prompt": "1.2.0",
"rimraf": "3.0.2",
"tap": "15.1.5"
},
"directories": {
"doc": "docs",
"test": "test"
},
"engines": {
"node": "16.13.0"
},
"license": "MIT",
"main": "server.js",
"name": "swaps-service",
"repository": {
"type": "git",
"url": "https://github.com/submarineswaps/swaps-service"
},
"scripts": {
"bcash-integration-test": "tap -j 1 test/bcash_bcashregtest/*.js",
"bcoin-integration-test": "tap -j 1 test/bcoin_bcoinregtest/*.js",
"btcd-integration-test": "tap -j 1 test/btcd_regtest/*.js",
"ltcd-integration-test": "tap -j 1 test/ltcd_ltcregtest/*.js",
"server-integration-test": "tap -j 1 test/server",
"test": "tap test/async-util/*.js test/chain/*.js test/script/*.js test/swaps/*.js"
},
"version": "1.0.0"
}