forked from new-davinci/mbot-soccer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
51
52
53
54
55
56
{
"name": "mbot-soccer",
"version": "0.0.1",
"description": "mBot Bluetooth SoccerBot",
"main": "index.js",
"engines": {
"node": ">=4.4.0 <6.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"controls": "node ./eg/controls.js",
"gamepad": "node ./eg/gamepad.js",
"firmata-usb": "interchange install git+https://github.com/Makeblock-official/mbot_nodebots -a uno --firmata=usb",
"firmata-bluetooth": "interchange install git+https://github.com/Makeblock-official/mbot_nodebots -a uno --firmata=bluetooth",
"lint": "eslint . --ext .js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/EmergingTechnologyAdvisors/mbot-soccer.git"
},
"keywords": [
"mBot",
"soccer",
"johnny-five",
"nodebot",
"makeblock"
],
"author": "ETA <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmergingTechnologyAdvisors/mbot-soccer/issues"
},
"homepage": "https://github.com/EmergingTechnologyAdvisors/mbot-soccer",
"dependencies": {
"blipp": "^2.3.0",
"convict": "^1.1.3",
"hapi": "^13.2.2",
"inert": "^3.2.0",
"j5-songs": "0.0.9",
"johnny-five": "^0.9.39",
"keypress": "^0.2.1",
"lodash": "^4.7.0",
"node-pixel": "^0.6.0",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"optionalDependencies": {
"gamepad": "^1.2.2"
},
"devDependencies": {
"nodebots-interchange": "^1.0.1",
"eslint": "^2.5.1",
"eslint-config-eta": "0.0.4"
}
}