forked from thegecko/web-bluetooth-dfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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": "web-bluetooth-dfu",
"version": "1.2.1",
"description": "Device firmware update with Web Bluetooth",
"homepage": "https://thegecko.github.io/web-bluetooth-dfu/",
"author": "Rob Moran <[email protected]>",
"license": "MIT",
"types": "./types/index.d.ts",
"main": "./index.js",
"browser": {
"./index.js": "./dist/secure-dfu.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thegecko/web-bluetooth-dfu.git"
},
"keywords": [
"ble",
"bluetooth",
"dfu",
"firmware",
"fota",
"nordic",
"web-bluetooth"
],
"scripts": {
"build": "gulp",
"example": "node examples/node.js"
},
"engines": {
"node": ">=8.14.0"
},
"dependencies": {
"@types/node": "^8.10.40",
"@types/web-bluetooth": "0.0.5"
},
"devDependencies": {
"browserify": "^16.5.1",
"crc-32": "^1.2.0",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"jszip": "^3.4.0",
"merge2": "^1.3.0",
"progress": "^2.0.3",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webbluetooth": "^2.0.1",
"source-map": "^0.8.0-beta.0"
}
}