-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.38 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
{
"name": "lightning-nespresso-server",
"version": "1.0.0",
"description": "This repository is part of a Do-It-Yourself vending machine project which connects to a Bitcoin point of sales terminal.\nSelect your coffee, pay with Bitcoin (via Lightning Network), and the vending machine will deliver your Nespresso capsule.",
"main": "index.js",
"scripts": {
"ls": "node_modules/.bin/nodemcu-tool fsinfo",
"upload-app": "node_modules/.bin/nodemcu-tool upload app/*",
"devices": "node_modules/.bin/node_modules/.bin/nodemcu-tool devices",
"format": "node_modules/.bin/nodemcu-tool mkfs --noninteractive",
"flash-fw": "esptool.py --port /dev/tty.SLAB_USBtoUART write_flash -fm qio 0x00000 firmware/nodemcu-master-10-modules-2017-04-12-15-24-09-float.bin",
"flash-fw-dev": "esptool.py --port /dev/tty.SLAB_USBtoUART write_flash -fm qio 0x00000 firmware/nodemcu-dev-10-modules-2017-04-14-15-13-54-float.bin",
"erease-flash-fw": "esptool.py --port /dev/tty.SLAB_USBtoUART erase_flash",
"pwd": "pwd",
"terminal": "node_modules/.bin/nodemcu-tool terminal",
"terminal-py": "nodemcu-uploader --port /dev/tty.SLAB_USBtoUART terminal"
},
"author": {
"name": "Stephane Roche",
"email": "[email protected]",
"url": "https://bitcoin-studio.com"
},
"license": "MIT",
"dependencies": {
"nodemcu-tool": "^3.0.2",
"serialport": "^7.1.5"
}
}