Add project files including package.json, package-lock.json, .gitignore

This commit is contained in:
2025-06-05 16:57:31 +02:00
parent 6261ae9c47
commit f9bd4279aa
4 changed files with 280 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "asm3",
"version": "0.0.1",
"description": "Implementation of the asm3 model for Node-Red",
"repository": {
"type": "git",
"url": "https://gitea.centraal.wbd-rd.nl/p.vanderwilt/asm3.git"
},
"keywords": [
"asm3",
"activated sludge",
"wastewater",
"biological model",
"node-red"
],
"license": "SEE LICENSE",
"author": "P.R. van der Wilt",
"main": "asm3.js",
"scripts": {
"test": "node asm3.js"
},
"node-red": {
"nodes": {
"asm3": "asm3.js"
}
},
"dependencies": {
"mathjs": "^14.5.2"
}
}