-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
50
{
"name": "@butter-robotics/mas-node-red-api",
"version": "2.5.0",
"description": "A node-red API for Butter Robotics platform",
"node-red": {
"nodes": {
"butter-play-animation": "src/nodes/play-animation.js",
"butter-control-animation": "src/nodes/control-animation.js",
"butter-get-available-animations": "src/nodes/get-available-animations.js",
"butter-get-motor-register": "src/nodes/get-motor-register.js",
"butter-set-motor-register": "src/nodes/set-motor-register.js",
"butter-move-motor": "src/nodes/move-motor.js"
}
},
"directories": {
"example": "examples",
"test": "test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"test": "jest",
"publish": "npm publish --scope @butter-robotics"
},
"repository": {
"type": "git",
"url": "git+https://github.com/butter-robotics/Butter.MAS.NodeRed.git"
},
"keywords": [
"butter",
"robotics",
"mas",
"node-red"
],
"author": "Ron Gissin & Benny Megidish",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/butter-robotics/Butter.MAS.NodeRed/issues"
},
"homepage": "https://github.com/butter-robotics/Butter.MAS.NodeRed#readme",
"dependencies": {
"@butter-robotics/mas-javascript-api": "^2.4.0"
},
"devDependencies": {
"jest": "^29.5.0",
"should": "^13.2.3"
}
}