-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
48 lines (48 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
{
"name": "metawear",
"version": "1.2.0",
"author": "Laura Kassovic <laura@mbientlab.com>",
"license": "SEE LICENSE IN LICENSE",
"description": "Official JavaScript SDK for MetaWear",
"repository": {
"type": "git",
"url": "git+https://github.com/mbientlab/MetaWear-SDK-JavaScript.git"
},
"bugs": {
"url": "https://github.com/mbientlab/MetaWear-SDK-JavaScript/issues"
},
"keywords": [
"metawear",
"mbientlab",
"bluetooth",
"ble",
"sensors",
"wearable"
],
"main": "./index.js",
"engines": {
"node": ">=12.0.0 <13.0.0"
},
"homepage": "https://github.com/mbientlab/MetaWear-SDK-JavaScript#readme",
"dependencies": {
"debug": "^2.6.9",
"enum": "^2.5.0",
"ffi-napi": "^4.0.3",
"noble-device": "git+https://github.com/mbientlab/noble-device.git",
"ref-array-di": "^1.2.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"url-exists": "^1.0.3"
},
"devDependencies": {
"jshint": "^2.9.5",
"mocha": "^9.2.1"
},
"scripts": {
"preinstall": "git submodule update --init --recursive",
"install": "make OPT_FLAGS=-Wno-strict-aliasing -C MetaWear-SDK-Cpp/ -j",
"uninstall": "make -C MetaWear-SDK-Cpp/ clean",
"pretest": "jshint *.js lib/. test/.",
"test": "mocha"
}
}