-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 878 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 878 Bytes
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
{
"main": "index.py",
"engine": "python3",
"name": "rinobot-plugin-normalize",
"description": "Normalises a column of data",
"version": "0.3.2",
"template": "--column=2 --algo=max",
"author": "eoin murray",
"license": "MIT",
"options": {
"cols": {
"type": "string",
"description": "Specify which columns to operate on."
},
"rows": {
"type": "string",
"description": "Specify which row to operate on."
},
"algo": {
"type": "string",
"description": "Specify to normalize by the max or sum or the columns.",
"allowed": [
"sum",
"max"
],
"required": true
}
},
"scripts": {
"postinstall": "pip install rinobot-plugin --upgrade"
},
"repository": "https://github.com/rinocloud/rinobot-plugin-normalize.git",
"keywords": [
"rinobot",
"rinocloud"
]
}