-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
executable file
·58 lines (58 loc) · 1.45 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
{
"name": "nodemcu-tool",
"version": "3.2.1",
"description": "Command line tool to upload and manage files on your NodeMCU / ESP8266 Module / ESP32 Module.",
"keywords": [
"cli",
"lua",
"terminal",
"nodemcu",
"esp8266",
"esp32",
"wifi",
"serial",
"upload",
"embedded"
],
"homepage": "https://github.com/AndiDittrich/NodeMCU-Tool",
"bugs": "https://github.com/AndiDittrich/NodeMCU-Tool/issues",
"repository": "AndiDittrich/NodeMCU-Tool",
"files": [
"bin",
"lib",
"helloworld.lua",
"CHANGED.md",
"LICENSE.md",
"README.md"
],
"main": "./lib/nodemcu-connector.js",
"bin": {
"nodemcu-tool": "bin/nodemcu-tool.js"
},
"scripts": {
"test": "eslint lib/ bin/;"
},
"engines": {
"node": ">=18.0"
},
"preferGlobal": true,
"author": "Andi Dittrich (https://andidittrich.de)",
"license": "MIT",
"dependencies": {
"async-magic": "^1.3.0",
"cli-progress": "^3.1.0",
"colors": "^1.1.2",
"commander": "^2.14.0",
"fs-magic": "^2.1.1",
"glob": "^7.1.6",
"is-glob": "^4.0.1",
"logging-facility": "^2.0.1",
"luamin": "^1.0.4",
"prompt": "1.3.0",
"serialport": "12.0.0"
},
"devDependencies": {
"eslint": "^4.18.0",
"eslint-config-aenondynamics": "^0.2.0"
}
}