-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 910 Bytes
/
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
{
"name": "lnd-gui",
"version": "0.0.2",
"description": "A GUI for alternative to LND",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev-client\" \"npm run ln-service\"",
"start": "concurrently \"npm run client\" \"npm run ln-service\"",
"client": "cd ./client && gulp serve-bundle",
"dev-client": "cd ./client && gulp watch",
"ln-service": " cd ./node_modules/ln-service && npm start",
"postinstall": "cd ./client && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PWKad/lnd-gui.git"
},
"keywords": [
"lnd",
"aurelia",
"ln-service"
],
"author": "Patrick Walters",
"license": "ISC",
"bugs": {
"url": "https://github.com/PWKad/lnd-gui/issues"
},
"homepage": "https://github.com/PWKad/lnd-gui#readme",
"dependencies": {
"concurrently": "^3.5.1",
"ln-service": "^2.0.1"
}
}