-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlibrary.json
56 lines (56 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "List",
"version": "3.0.1",
"description": "The Ultimate Collection of Lists. This library extends the Arduino ecosystem with the functionality of several easy-to-use lists for numerous purposes.",
"keywords": [
"arduino",
"list",
"datatype",
"storage"
],
"homepage": "https://nkaaf.github.io/Arduino-List",
"repository": {
"type": "git",
"url": "https://github.com/nkaaf/Arduino-List"
},
"authors": {
"name": "Niklas Kaaf",
"email": "[email protected]",
"url": "https://github.com/nkaaf",
"maintainer": true
},
"license": "LGPL-2.1-only",
"frameworks": "*",
"platforms": "*",
"headers": "List.hpp",
"examples": [
{
"name": "DifferenceMutableAndImmutable",
"base": "examples/List/DifferenceMutableAndImmutable",
"files": [
"DifferenceMutableAndImmutable.ino"
]
},
{
"name": "ManageElements",
"base": "examples/List/ManageElements",
"files": [
"ManageElements.ino"
]
},
{
"name": "UtilsAndHelper",
"base": "examples/List/UtilsAndHelper",
"files": [
"UtilsAndHelper.ino"
]
}
],
"export": {
"include": [
"examples/*",
"src/*"
]
}
}