forked from kpatel122/ESP32-Web-Bluetooth-Terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "web-bluetooth-terminal",
"version": "1.3.3",
"description": "Progressive Web Application for serial communication with your own Bluetooth Low Energy (Smart) devices",
"bin": "./cli.js",
"scripts": {
"build": "npm run js:vendor && npm run styles:vendor && npm run styles",
"js:vendor": "cpx \"node_modules/sw-toolbox/*.js\" js && cpx \"node_modules/bluetooth-terminal/src/*.js\" js",
"lint": "eslint cli.js sw.js js/main.js",
"styles": "node-sass -o css scss",
"styles:vendor": "cpx \"node_modules/normalize.css/normalize.css\" css",
"watch:styles": "nodemon -e scss -x \"npm run styles\""
},
"repository": {
"type": "git",
"url": "https://github.com/loginov-rocks/Web-Bluetooth-Terminal.git"
},
"keywords": [
"arduino",
"ble",
"bluetooth",
"bluetooth-low-energy",
"bluetooth-smart",
"communication",
"iot",
"physical-web",
"pwa",
"terminal",
"serial"
],
"author": "Danila Loginov <[email protected]> (https://loginov.rocks)",
"license": "MIT",
"bugs": {
"url": "https://github.com/loginov-rocks/Web-Bluetooth-Terminal/issues"
},
"homepage": "https://loginov-rocks.github.io/Web-Bluetooth-Terminal",
"dependencies": {
"git-clone": "^0.1.0"
},
"devDependencies": {
"bluetooth-terminal": "^1.3.5",
"cpx": "^1.5.0",
"eslint": "^5.14.1",
"eslint-config-google": "^0.12.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"normalize.css": "^8.0.1",
"sw-toolbox": "^3.6.0"
}
}