-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "server",
"version": "0.1.0",
"description": "Cosmic Bridge Server Node",
"main": "index.js",
"scripts": {
"jest": "jest --env=node --colors --coverage test",
"test": "npm run jest",
"start": "node src/main.js",
"master": "node src/multisig/create_multisig.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CosmicBridge/server.git"
},
"keywords": [
"cosmos",
"bitcoin",
"lightning",
"network",
"payments",
"off-chain",
"microtransactions"
],
"author": "Cosmic Bridge",
"license": "MIT",
"bugs": {
"url": "https://github.com/CosmicBridge/server/issues"
},
"homepage": "https://github.com/CosmicBridge/server#readme",
"dependencies": {
"bclient": "^0.1.3",
"bcoin": "^1.0.2",
"body-parser": "^1.18.3",
"config": "^1.30.0",
"lotion": "^0.1.19",
"secp256k1": "^3.5.0"
},
"lint": "node_modules/.bin/goodparts src/",
"parserOptions": {
"ecmaVersion": 6
},
"devDependencies": {
"goodparts": "^1.2.1",
"jest": "^23.0.1",
"test": "^0.6.0"
}
}