Files
MMM-IntelliCenter/package.json
Parnic b187da8feb
All checks were successful
Node.js CI / build (18.x) (push) Successful in 23s
Node.js CI / build (20.x) (push) Successful in 9s
Node.js CI / build (22.x) (push) Successful in 9s
Update dependency
2025-01-25 12:08:15 -06:00

26 lines
829 B
JSON

{
"name": "mmm-intellicenter",
"version": "1.0.0",
"description": "Show data from Pentair IntelliCenter systems",
"main": "MMM-IntelliCenter.js",
"author": "parnic",
"repository": "https://github.com/parnic/MMM-IntelliCenter.git",
"license": "MIT",
"dependencies": {
"node-intellicenter": "^0.4.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"markdownlint-cli2": "^0.17.1",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2"
},
"scripts": {
"lint": "eslint . && stylelint intellicenter.css && prettier . --check && markdownlint-cli2 **/*.md",
"lint:fix": "eslint . --fix && stylelint intellicenter.css --fix && prettier . --write && markdownlint-cli2 --fix **/*.md"
}
}