-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.08 KB
/
package.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
{
"name": "pimatic-filter",
"description": "Pimatic Plugin which provides various filtering functions for sensor data",
"author": {
"name": "Marcus Wittig",
"url": "https://github.com/mwittig"
},
"main": "filter",
"files": [
"filter.coffee",
"filter-config-schema.coffee",
"device-config-schema.coffee",
"LICENSE",
"README.md"
],
"keywords": [
"Digital Filter",
"Digital Smoothing",
"Pimatic"
],
"version": "0.9.5",
"homepage": "https://github.com/mwittig/pimatic-filter/tree/master",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/mwittig/pimatic-filter.git"
},
"bugs": {
"url": "https://github.com/mwittig/pimatic-filter/issues"
},
"license": "AGPL-3.0",
"maintainers": [
{
"name": "mwittig",
"url": "https://github.com/mwittig"
}
],
"configSchema": "filter-config-schema.coffee",
"dependencies": {
"pimatic-plugin-commons": "^0.9.10"
},
"peerDependencies": {
"pimatic": ">=0.8.0 <1.0.0"
},
"engines": {
"node": ">= 4",
"npm": ">1.1.x"
}
}