From 86d595729cd0e1d2dd82f3fa1da6443c6b212c59 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 19 Jan 2016 16:34:12 +0200 Subject: [PATCH] @PlatformIO Library Registry manifest file * This library in Web Registry: http://platformio.org/#!/lib/show/568/jsmn * Specification: [library.json](http://docs.platformio.org/en/latest/librarymanager/config.html) * Library Manager: http://docs.platformio.org/en/latest/librarymanager/index.html --- library.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..8e2f5c2 --- /dev/null +++ b/library.json @@ -0,0 +1,16 @@ +{ + "name": "jsmn", + "keywords": "json", + "description": "Minimalistic JSON parser/tokenizer in C. It can be easily integrated into resource-limited or embedded projects", + "repository": + { + "type": "git", + "url": "https://github.com/zserge/jsmn.git" + }, + "frameworks": "*", + "platforms": "*", + "examples": [ + "example/*.c" + ], + "exclude": "test" +}