-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "node-red-contrib-pid-autotune",
"version": "1.3.0",
"description": "A node-red node to performe PID autotune on a brew rig",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/enorfelt/node-red-contrib-pid-autotune.git"
},
"keywords": [
"node-red",
"pid",
"autotune"
],
"node-red": {
"nodes": {
"pid-autotune": "pid-autotune.js",
"kettle-sim": "kettle-sim.js"
}
},
"author": "Erik Norfelt",
"license": "MIT",
"bugs": {
"url": "https://github.com/enorfelt/node-red-contrib-pid-autotune/issues"
},
"homepage": "https://github.com/enorfelt/node-red-contrib-pid-autotune#readme",
"devDependencies": {
"mocha": "^8.2.1",
"node-red": "^1.2.6",
"node-red-node-test-helper": "^0.2.5",
"should": "^13.2.3",
"sinon": "^9.2.2"
},
"dependencies": {}
}