-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 854 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
{
"name": "node-red-contrib-scinan",
"version": "1.0.0",
"description": "An adaptation of the Scinan device API for Node Red",
"author": "Lars Ødegaard <[email protected]>",
"license": "GPL-3.0",
"node-red": {
"nodes": {
"scinan-device-config": "nodes/scinan-device-config.js",
"scinan-device": "nodes/scinan-device.js"
}
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\"",
"test-api": "node test/api-test.js"
},
"devDependencies": {
"mocha": "^8.0.1",
"node-red": "^1.1.2",
"node-red-node-test-helper": "^0.2.5"
},
"dependencies": {
"request": "^2.88.2"
},
"repository": {
"type": "git",
"url": "[email protected]:lodegaard/node-red-contrib-scinan.git"
},
"keywords": [
"node-red",
"node-red-contrib",
"iot",
"scinan",
"prosmart"
]
}