-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
39 lines (39 loc) · 1.13 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "Ministache",
"version": "1.0.1",
"description": "A small, fast and spec-complete implementation of the Mustache template language for Arduino, supporting interpolation, partials, sections, inverted sections, custom delimiters, and comments.",
"keywords": ["mustache", "moustache", "text", "text processor", "template", "logic-less", "html"],
"repository": {
"type": "git",
"url": "https://github.com/floatplane/ministache"
},
"authors": [
{
"name": "Brian Sharon",
"url": "https://github.com/floatplane",
"maintainer": true
}
],
"license": "MIT",
"platforms": "*",
"headers": "Ministache.h",
"examples": [
{
"name": "Basic",
"base": "examples/basic",
"files": ["basic.ino"]
},
{
"name": "Partials",
"base": "examples/partials",
"files": ["partials.ino"]
}
],
"dependencies": {
"bblanchon/ArduinoJson": "^7.0.0"
},
"build": {
"unflags": "-std=gnu++11",
"flags": "-std=gnu++17"
}
}