netatmo-nodejs-api
Version:
Node.js API wrapper for Netatmo API.
50 lines (49 loc) • 1.42 kB
JSON
{
"name": "netatmo-nodejs-api",
"version": "2.2.0",
"description": "Node.js API wrapper for Netatmo API.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "eslint ./src/**.ts",
"test": "mocha test/index.test.js",
"cover-html": "nyc --reporter=html mocha test/index.test.js",
"cover": "nyc --reporter=json-summary --exclude-after-remap false mocha test/index.test.js",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">=16.13.0"
},
"keywords": [
"netatmo",
"api",
"weather",
"camera"
],
"author": "nioc <dev@nioc.eu>",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/nioc/netatmo-nodejs-api",
"repository": {
"type": "git",
"url": "git+https://github.com/nioc/netatmo-nodejs-api.git"
},
"bugs": "https://github.com/nioc/netatmo-nodejs-api/issues",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"axios-mock-adapter": "^2.1.0",
"coveralls": "^3.1.1",
"eslint": "^9.19.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"dependencies": {
"axios": "^1.7.9"
}
}