-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.27 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": "bean-sdk",
"version": "0.6.3",
"description": "Official Light Blue Bean SDK for Node.js by Punch Through",
"keywords": [
"bean",
"punchthrough",
"lightblue",
"ble",
"bluetooth",
"noble"
],
"main": "build/lightblue.js",
"babel": {
"presets": [
"es2015"
]
},
"bin": {
"bean": "build/cli/entry.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-register --recursive",
"babel": "./node_modules/.bin/babel src -d build/",
"build": "python scripts/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PunchThrough/bean-sdk-node.git"
},
"author": "Stephen Stack",
"license": "ISC",
"bugs": {
"url": "https://github.com/PunchThrough/bean-sdk-node/issues"
},
"homepage": "https://github.com/PunchThrough/bean-sdk-node#readme",
"dependencies": {
"async": "*",
"commander": "*",
"crc": "^3.4.0",
"fs-extra": "^0.30.0",
"js-yaml": "*",
"noble": "1.7.0",
"queue": "^4.0.0",
"sleep": "^3.0.1",
"sprintf-js": "^1.0.3",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.14.0",
"mocha": "*",
"sinon": "^1.17.4"
}
}