-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 981 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
40
41
{
"name": "node-red-contrib-easybotics-pca9685",
"version": "0.0.3",
"description": "use a pca9685 to control brushed DC motors, servos, or stepper motors",
"keywords": [
"raspberry",
"raspberrypi",
"pi",
"rpi",
"PCA9685",
"motor",
"servo",
"easybotics",
"node-red"
],
"dependencies": {
"pca9685": "^4.0.3",
"i2c-bus": "^4.0.10"
},
"homepage": "https://github.com/easybotics/node-red-contrib-easybotics-pca9685",
"bugs": "https://github.com/easybotics/node-red-contrib-easybotics-pca9685/issues",
"author": {
"name": "Ben",
"email": "[email protected]",
"url": "https://github.com/keptan"
},
"repository": {
"type": "git",
"url": "https://github.com/easybotics/node-red-contrib-easybotics-pca9685"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "GPL2",
"node-red": {
"nodes": {
"PCA": "PCA.js"
}
}
}