Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
fix readme
add configuration files
  • Loading branch information
matthias-range-ais authored Jul 19, 2019
1 parent 1ddb192 commit 0090b39
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 9 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
Binary file modified .gitignore
Binary file not shown.
Binary file added .npmignore
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This node is the easiest way to connect your equipment to the EquipmentCloud® o

## Installation

`npm install node-red-contrib-eqcloud-monitoring`
`npm install @ais_automation/node-red-contrib-eqcloud-monitoring`

## Usage

Expand Down
20 changes: 12 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-eqcloud-monitoring",
"version": "1.0.0",
"name": "@ais_automation/node-red-contrib-eqcloud-monitoring",
"version": "1.0.1",
"node-red": {
"nodes": {
"Monitoring": "Monitoring.js"
Expand All @@ -12,14 +12,10 @@
},
"description": "Client for EquipmentCloud® Monitoring",
"license": "MIT",
"author": {
"name": "AIS Automation GmbH",
"email": "[email protected]",
"url": "https://eqcloud.ais-automation.com"
},
"author": "AIS Automation GmbH <[email protected]> (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",
Expand Down Expand Up @@ -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"
}
}

0 comments on commit 0090b39

Please sign in to comment.