-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 938 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 938 Bytes
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
{
"name": "node-mcu",
"version": "1.0.0",
"description": "NodeMCU development Project",
"author": "Stijn Bernards",
"license": "MIT",
"dependencies": {
"@prettier/plugin-lua": "^0.0.1",
"gulp": "^4.0.2",
"gulp-luacheck": "^1.0.4",
"gulp-prettier": "^2.3.0",
"nodemcu-tool": "^3.2.0",
"prettier": "^1.19.1",
"lodash.template": "^4.5.0"
},
"scripts": {
"format": "gulp format",
"lint:luacheck": "gulp luacheck",
"lint:prettier": "gulp validate",
"lint": "yarn run lint:luacheck && yarn run lint:prettier",
"test": "make test",
"devices": "nodemcu-tool devices",
"upload": "cd ./src && nodemcu-uploader --port $0 *.lua $@",
"terminal": "nodemcu-uploader --port $0 terminal",
"exec": "nodemcu-uploader --port $0 file do init.lua",
"build-firmware": "docker-compose run nodemcu build",
"flash": "esptool.py --port $1 write_flash -fm dio 0x00000 $1"
}
}