-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 912 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": "sphero-sdk",
"version": "0.0.1",
"description": "A minimal, unopinionated library to control Sphero, BB8 and Ollie using Javascript over Bluetooth.",
"keywords": [
"sphero",
"bb8",
"ollie",
"robot",
"sdk",
"bluetooth",
"ble"
],
"homepage": "https://spherosdk.github.io",
"license": "MIT",
"author": "Jordan Majd",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/JordanMajd/Sphero-SDK.git"
},
"bugs": {
"url": "https://github.com/JordanMajd/Sphero-SDK/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-markdox": "^0.1.1",
"mocha": "^2.4.5",
"nodemon": "^1.9.1"
},
"dependencies": {
"bluebird": "^3.5.1",
"noble": "^1.8.1"
}
}