Files
generalFunctions/package.json

36 lines
969 B
JSON
Raw Normal View History

2025-06-10 09:52:44 +02:00
{
2025-09-22 16:02:04 +02:00
"name": "generalFunctions",
2025-06-10 09:52:44 +02:00
"version": "1.0.0",
"description": "General utility functions used across multiple Node-RED modules",
2025-06-10 12:36:39 +02:00
"main": "./index.js",
"exports": {
".": "./index.js",
"./menuUtils": "./src/helper/menuUtils.js",
"./mathUtils": "./src/helper/mathUtils.js",
"./assetUtils": "./src/helper/assetUtils.js",
2026-02-23 13:17:47 +01:00
"./outputUtils": "./src/helper/outputUtils.js",
"./helper": "./src/helper/index.js",
"./state": "./src/state/index.js",
"./predict": "./src/predict/index.js",
2026-03-11 11:13:05 +01:00
"./pid": "./src/pid/index.js",
2026-02-23 13:17:47 +01:00
"./nrmse": "./src/nrmse/index.js",
"./outliers": "./src/outliers/index.js"
2025-06-10 12:36:39 +02:00
},
2025-06-10 09:52:44 +02:00
"scripts": {
"test": "node --test test/ src/nrmse/errorMetric.test.js"
2025-06-10 09:52:44 +02:00
},
"repository": {
"type": "git",
2025-09-22 16:02:04 +02:00
"url": "https://gitea.centraal.wbd-rd.nl/RnD/generalFunctions.git"
2025-06-10 09:52:44 +02:00
},
"keywords": [
"utilities",
"common",
"node-red"
],
"author": "Rene de Ren",
"license": "SEE LICENSE"
2026-02-23 13:17:47 +01:00
}