From 0090b394265334ccc901c0d2babd41df0df7c1ba Mon Sep 17 00:00:00 2001 From: matthias-range-ais <52161455+matthias-range-ais@users.noreply.github.com> Date: Fri, 19 Jul 2019 15:21:15 +0200 Subject: [PATCH] v1.0.1 fix readme add configuration files --- .eslintrc.json | 36 ++++++++++++++++++++++++++++++++++++ .gitignore | Bin 914 -> 2024 bytes .npmignore | Bin 0 -> 2178 bytes README.md | 2 +- package.json | 20 ++++++++++++-------- 5 files changed, 49 insertions(+), 9 deletions(-) create mode 100644 .eslintrc.json create mode 100644 .npmignore diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..2ce149a --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,36 @@ +{ + "env": { + "es6": true, + "node": true + }, + "extends": "eslint:recommended", + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly" + }, + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "rules": { + "indent": [ + "error", + 4, + { + "SwitchCase": 1 + } + ], + "linebreak-style": [ + "warn", + "unix" + ], + "quotes": [ + "error", + "double" + ], + "semi": [ + 2, + "always" + ] + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index ad46b30886fa350c1f59761b100e5e4b01f9a7ec..269ef1349406939b4da9f48edb9a9635bd9e18d1 100644 GIT binary patch literal 2024 zcmai#OOFy!5QS^aujphJqa-wO>r%%UjfsYF?$4aZz9EeLH*3pB?`Ol>_<_z4*b#Nw`XY!f1 zS~WL9On6MvN-LqB*`4UQ5_Zgbp=vWnV`?tdBtFpzx;B@h!V&pxcjw;4m0S+Jd#^cD z_DFj0o?espqkevhZ&5_)Tv7(^l^^k zJhgc2?ZPKNMXaE2J literal 914 zcmZWoO>f&U487}D5Xhlx0o&Mh$F;+-p}>Z8mz@GdVjLy1BuH{H@7M29Zi@~*_=D8r zBi}QhwQ%hnUHQQu91}RiDsH8M3hANjzugM;%U7Ty0s{p=ch{AZ4^TgI+AS#$z zx_vm-nm!G~D3DX>O`HakSyvavF8O(csEvRnuDYDNgY#T&Ro^Ov{d2r>Cd-L~{a!G=i^HvIuRHWfF~F+Q6hzD2RUe=r9Naj=GZ%wuK6lq*vP(_KJ*v{%C5;MI!#kwk~~ggqpq&GF6WRXvhI_zL3U@r_oT z>er|h{fF9q`T0mkECSXJ95QX@0Yv5bF%&8_2KVfu}qfWBcF#_TFK y7lx|7{TZ?$Eh#V?D~Ai=aybUsYP#s`^d7!E7vW5hf&bM0RH!*j&uiC9R{aB-NLZvuj%MywZ2np1(VHG)vo2E_N$a&E6LQ7A z@7y!zoS8fR_xHjw`({rzw~Y;K**;xa-uxR_Wouj6&}LTJ#CD2JdsjO1VujU;d40cB zT&)cC!TEu~;YPTXZEc}UrT))^y47c(+zb7K9h~A{JZ}_PYOlW&%%=9J)j+=1`C4&P z;gS1A=y(2I5n|lbwmo zg+tU>nRbd<`*%Y4>|WthxCc`0-oc-m!3b=;PTJnsy;i__FNa1_jN_o-VeTweTAymY zbQCHxmuqY3q2r=b7cFwyNB2fP3{}&GV$t{iMaomGeow$=I!q8$E07(K+a(f1@8Ot&(#nE`?Y}4Jzk9m)7Vra4Xlrour?M zr{8MjTnjPb(Mc<%^Z!cIaQPRL?x)&T#5=u-lw$7mC82#A7TqI7BD2GtwU1m_cKG7w$%MR_unaKUG1p-S#}n zbT{95UAg~Do$b5J97sJgkfWTBzUt$C*D7;~dKALQ^a~g22A6x~Jl8q&U__=$og$%+ zdmQ(v!{cm!ufG#&PqA+7ll{;v&%`JuLQK2h5j{7SermFmlgCjBx4ZM1G}E7#t>WbV zrD}2|j$8H0pSIq=+}}zkzPO^&@8H6n?YxFh_s$6I{mA4NJxN0^}?&E*`Ok?tvT p7+ (https://eqcloud.ais-automation.com)", "repository": { "type": "github", - "url": "https://github.com/AISAutomation/node-red-contrib-eqcloud-monitoring" + "url": "git+https://github.com/AISAutomation/node-red-contrib-eqcloud-monitoring.git" }, "keywords": [ "IoT", @@ -59,5 +55,13 @@ }, "scripts": { "test": "mocha --recursive 'test/*_spec.js' --exit" + }, + "bugs": { + "url": "https://github.com/AISAutomation/node-red-contrib-eqcloud-monitoring/issues" + }, + "homepage": "https://github.com/AISAutomation/node-red-contrib-eqcloud-monitoring#readme", + "main": "Monitoring.js", + "directories": { + "test": "test" } }