forked from thegecko/webbluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "webbluetooth",
"version": "2.1.0",
"description": "Node.js implementation of the Web Bluetooth Specification",
"homepage": "https://github.com/thegecko/webbluetooth",
"author": "Rob Moran <rob@thegecko.org>",
"license": "MIT",
"main": "dist/webbluetooth.umd.js",
"module": "dist/webbluetooth.esm.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/thegecko/webbluetooth.git"
},
"keywords": [
"web-bluetooth",
"ble",
"bluetooth"
],
"scripts": {
"build": "rollup -c && typedoc src",
"watch": "rollup -c -w"
},
"engines": {
"node": ">=8.14.0"
},
"devDependencies": {
"rollup": "^1.10.1",
"rollup-plugin-delete": "^0.2.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.21.0",
"tslint": "^6.1.1",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"dependencies": {
"@abandonware/noble": "1.9.2-7",
"@types/node": "^8.10.60",
"@types/web-bluetooth": "^0.0.5"
}
}