From d036dcd8e23389c7e04cf8caf406dd19cfbc9f43 Mon Sep 17 00:00:00 2001 From: Roman3349 Date: Tue, 27 Sep 2016 11:25:56 +0200 Subject: [PATCH] Add information about examples, license and version to @PlatformIO Library Registry manifest file Signed-off-by: Roman3349 --- library.json | 43 ++++++++++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/library.json b/library.json index 14bae5d..c8a3b09 100644 --- a/library.json +++ b/library.json @@ -1,19 +1,28 @@ { - "name": "WebSockets", - "keywords": "wifi, http, web, server, client, websocket", - "description": "WebSocket Server and Client for Arduino based on RFC6455", - "repository": - { - "type": "git", - "url": "https://github.com/Links2004/arduinoWebSockets.git" - }, - "exclude": "tests", - "frameworks": "arduino", - "platforms": "*", - "authors": - { - "name": "Markus Sattler", - "url": "https://github.com/Links2004", - "maintainer": true - } + "name": "WebSockets", + "description": "WebSocket Server and Client for Arduino based on RFC6455", + "keywords": "wifi, http, web, server, client, websocket", + "authors": [ + { + "name": "Markus Sattler", + "url": "https://github.com/Links2004", + "maintainer": true + } + ], + "repository": { + "type": "git", + "url": "https://github.com/Links2004/arduinoWebSockets.git" + }, + "version": "2.0.5", + "license": "LGPL-2.1", + "export": { + "exclude": [ + "tests" + ] + }, + "frameworks": "arduino", + "platforms": "*", + "examples": [ + "examples/*/*.ino" + ] }