forked from noble/bleno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.02 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
{
"name": "bleno",
"version": "0.5.0",
"description": "A Node.js module for implementing BLE (Bluetooth Low Energy) peripherals",
"main": "index.js",
"engines": {
"node": ">=0.8"
},
"os": [
"darwin",
"linux",
"android",
"freebsd",
"win32"
],
"scripts": {
"pretest": "jshint *.js lib/. test/. examples/.",
"test": "mocha -R spec test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sandeepmistry/bleno"
},
"keywords": [
"BLE",
"Bluetooth",
"Bluetooth Low Energy",
"Bluetooth Smart",
"peripheral"
],
"author": "Sandeep Mistry",
"maintainers": [
"Jacob Rosenthal"
],
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"jshint": "~2.9.4",
"should": "~2.0.2",
"mocha": "~1.14.0",
"node-blink1": "~0.2.2"
},
"dependencies": {
"debug": "^2.2.0"
},
"optionalDependencies": {
"bluetooth-hci-socket": "^0.5.1",
"bplist-parser": "0.0.6",
"xpc-connection": "~0.1.4"
}
}