-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.68 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
57
58
59
60
61
62
63
64
65
66
{
"name": "bb8",
"description": "Force control Sphero BB8 w/ Xbox controller or Myo armband",
"version": "1.0.2",
"author": "Sabin Tudor <[email protected]>",
"contributors": [],
"license": "GPL-v3",
"repository": "dimorphic/bb8",
"homepage": "https://github.com/dimorphic/bb8#readme",
"bugs": {
"url": "https://github.com/dimorphic/bb8/issues"
},
"keywords": [
"armband",
"joystick",
"wireless",
"wrapper",
"control",
"force",
"jedi",
"sith",
"wars",
"star",
"myo",
"xbox",
"sphero",
"bb8"
],
"engines": {
"node": ">= 6.0.0"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"scan": "node src/scan",
"start": "node_modules/.bin/nodemon --quiet --watch dist --exec 'clear && node dist/'",
"dev": "npm run clean && node_modules/.bin/babel src --out-dir dist --watch --debug",
"build": "npm run clean && node_modules/.bin/babel src --out-dir dist --source-maps inline"
},
"dependencies": {
"color": "^0.10.1",
"cylon": "^1.3.0",
"cylon-ble": "^0.10.1",
"cylon-joystick": "^0.22.0",
"lodash": "^3.10.1",
"myo": "^2.1.1",
"noble": "^1.8.1",
"source-map-support": "^0.5.0",
"sphero": "^0.5.0",
"tinycolor2": "^1.3.0"
},
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.13",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"colorize-str": "^1.0.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-plugin-react": "^3.11.3",
"nodemon": "^1.14.7",
"rimraf": "^2.6.2"
}
}