Files
pumpingStation/package.json

33 lines
954 B
JSON
Raw Normal View History

2025-10-07 18:05:54 +02:00
{
2025-10-14 13:51:32 +02:00
"name": "pumpingstation",
2025-10-07 18:05:54 +02:00
"version": "1.0.0",
"description": "Control module",
2025-10-14 08:36:45 +02:00
"main": "pumpingStation.js",
2025-10-07 18:05:54 +02:00
"scripts": {
"test": "node --test test/",
"wiki:contract": "node ../generalFunctions/scripts/wikiGen.js contract ./src/commands/index.js --write ./wiki/Home.md",
"wiki:datamodel": "node ../generalFunctions/scripts/wikiGen.js datamodel ./src/specificClass.js --write ./wiki/Home.md",
"wiki:all": "npm run wiki:contract && npm run wiki:datamodel"
2025-10-07 18:05:54 +02:00
},
"repository": {
"type": "git",
2025-10-14 08:36:45 +02:00
"url": "https://gitea.centraal.wbd-rd.nl/RnD/pumpingStation.git"
2025-10-07 18:05:54 +02:00
},
"keywords": [
2025-10-14 13:51:32 +02:00
"pumpingstation",
2025-10-07 18:05:54 +02:00
"node-red",
"recipient",
"water"
],
"author": "Rene De Ren",
"license": "SEE LICENSE",
"dependencies": {
"generalFunctions": "git+https://gitea.centraal.wbd-rd.nl/RnD/generalFunctions.git"
},
"node-red": {
"nodes": {
2025-10-14 13:51:32 +02:00
"pumpingstation": "pumpingStation.js"
2025-10-07 18:05:54 +02:00
}
}
}