-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 943 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
38
39
{
"name": "node-red-contrib-socketcan",
"version": "1.2.14",
"description": "node-red nodes for socketcan",
"dependencies": {
"bcrypt": ">=5.0.1",
"minimist": ">=1.2.6",
"socketcan": ">=3.0.0",
"util": ">=0.12.4"
},
"homepage": "https://github.com/grodansparadis/node-red-contrib-socketcan",
"keywords": [
"node-red",
"socketcan",
"canbus",
"can",
"canopen",
"vscp",
"automation",
"iot",
"m2m"
],
"license": "MIT",
"node-red": {
"nodes": {
"cansend": "src/send.js",
"canreceive": "src/receive.js",
"canconfig": "src/config.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/grodansparadis/node-red-contrib-socketcan.git"
},
"scripts": {
"lint": "eslint .",
"start": "mkdir -p .node-red/node_modules && ln -sf $PWD $PWD/.node-red/node_modules/node-red-contrib-socketcan && node-red -u .node-red"
}
}