forked from sbarwe/node-red-contrib-curve
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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": "node-red-contrib-curve",
"version": "1.0.1",
"description": "Node to calculate output by a given mathematical function expression",
"main": "none",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbarwe/node-red-contrib-curve.git"
},
"keywords": [
"node-red",
"math",
"expression",
"characteristics",
"simulation",
"normalization",
"function",
"plot",
"calibration",
"correction",
"calibration",
"mapping",
"fit"
],
"author": "Sebastian Barwe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sbarwe/node-red-contrib-curve/issues"
},
"homepage": "https://github.com/sbarwe/node-red-contrib-curve#readme",
"node-red": {
"version": ">=0.16.0",
"nodes": {
"curve": "curve/curve.js"
}
},
"dependencies": {
"built-in-math-eval": "^0.3.0",
"function-plot": "^1.17.3",
"mustache": "2.3.0"
},
"devDependencies": {},
"engines": {
"node": ">=4"
}
}