-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
{
"name": "spark-wallet",
"version": "0.2.8",
"androidVer": 210,
"description": "A minimalistic wallet GUI for c-lightning",
"bin": "dist/cli.js",
"scripts": {
"start": "./scripts/start.sh",
"prepublishOnly": "npm run dist:npm",
"dist:npm": "./scripts/build.sh",
"dist:cordova": "cd cordova && npm run dist --",
"dist:electron": "cd electron && npm run dist --",
"release": "./scripts/release.sh"
},
"repository": "https://github.com/shesek/spark-wallet",
"files": [
"dist",
"npm-shrinkwrap.json"
],
"keywords": [
"bitcoin",
"lightning",
"wallet",
"lightning-wallet",
"lightning-network",
"c-lightning"
],
"author": "Nadav Ivgi",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"clightning-client": "^0.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"helmet": "^3.18.0",
"ini": "^1.3.5",
"is-ip": "^3.1.0",
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"nanoid": "^2.0.3",
"qrcode": "^1.3.3",
"superagent": "^5.1.0",
"superagent-proxy": "github:shesek/superagent-proxy#5f0570481b4e98918103d5577006ff060123e87d"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4"
},
"optionalDependencies": {
"greenlock": "^2.3.8",
"node-forge": "^0.7.5",
"qrcode-terminal": "^0.12.0",
"selfsigned": "^1.10.2"
}
}