-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 753 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 753 Bytes
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
{
"name": "morningnews",
"version": "1.1.0",
"description": "An MQTT and HomeAssistant driven automatic news printer",
"main": "dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"build": "eslint ./src/** && tsc",
"tsc": "tsc",
"eslint": "eslint"
},
"author": "Niccolò Maggioni <nicco.maggioni@gmail.com>",
"license": "GPL-3.0",
"dependencies": {
"got": "10.7.0",
"js-yaml": "3.13.1",
"moment": "2.24.0",
"rss-parser": "3.7.6",
"serialport": "8.0.7",
"thermalprinter": "0.3.8"
},
"devDependencies": {
"@types/node": "13.11.1",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"eslint": "6.8.0",
"typescript": "3.8.3"
}
}