This repository was archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.34 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "blynk-tools",
"version": "0.2.1",
"description": "Tools for working with Blynk IoT Platform",
"author": "Volodymyr Shymanskyy",
"license": "GPL-3.0",
"preferGlobal": true,
"bin": {
"blynk": "bin/blynk.js"
},
"engines": {
"node": ">= 4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-spinner": "^0.2.8",
"cli-table-redemption": "^1.0.1",
"crc": "^3.8.0",
"debug": "^4.1.0",
"env-paths": "^2.0.0",
"fs-extra": "^7.0.1",
"json5": "^2.1.0",
"lodash": "^4.17.11",
"package-json": "^5.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"semver": "^5.6.0",
"yargs": "^12.0.5"
},
"optionalDependencies": {
"noble": "^1.9.1",
"serialport": "^6.2.1",
"usb": "^1.3.2"
},
"pkg": {
"scripts": [
"cmds/**/*.js",
"lib/**/*.js"
],
"assets": [
"config/**/*",
"certs/**/*"
]
},
"keywords": [
"IoT",
"Internet of Things",
"Blynk",
"firmware",
"gateway",
"bluetooth",
"serial",
"Arduino",
"Espruino",
"Raspberry Pi"
],
"repository": {
"type": "git",
"url": "https://github.com/vshymanskyy/blynk-tools"
},
"bugs": {
"url": "https://github.com/vshymanskyy/blynk-tools/issues"
}
}