forked from jacobrosenthal/node-eddystone-beacon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 974 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
42
43
44
45
46
47
{
"name": "eddystone-beacon",
"version": "1.0.6",
"description": "Create an Eddystone Beacon using Node.js",
"os": [
"darwin",
"linux",
"win32"
],
"keywords": [
"bluetooth",
"bluetooth low energy",
"BLE",
"Physical Web",
"Eddystone",
"beacon"
],
"repository": {
"type": "git",
"url": "https://github.com/don/node-eddystone-beacon.git"
},
"main": "index.js",
"scripts": {
"pretest": "jshint *.js lib/. test/. examples/.",
"test": "mocha -R spec --recursive test/"
},
"author": "Don Coleman <don.coleman@gmail.com>",
"maintainers": [
{
"name": "Don Coleman",
"email": "don.coleman@gmail.com"
},
{
"name": "Sandeep Mistry",
"email": "sandeep.mistry@gmail.com"
}
],
"license": "Apache-2.0",
"dependencies": {
"bleno": "^0.4.0",
"eddystone-url-encoding": "^1.0.1"
},
"devDependencies": {
"jshint": "~2.5.6",
"mocha": "~1.21.4"
}
}