forked from timdows/MMM-JsonTable
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 780 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 780 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
30
31
{
"name": "mmm-gmailfeed",
"version": "2.0.0",
"description": "A module for the MagicMirror² which creates a table with unread Gmail messages.",
"repository": {
"type": "git",
"url": "git+https://github.com/shaneapowell/MMM-GmailFeed"
},
"license": "MIT",
"keywords": [
"magic mirror",
"smart mirror",
"mirror email"
],
"dependencies": {
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "latest",
"@stylistic/eslint-plugin": "latest",
"eslint": "^8.56.0",
"eslint-plugin-import": "latest",
"eslint-plugin-unicorn": "latest",
"prettier": "^3.1.1"
},
"scripts": {
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier . --write",
"test": "npm run lint"
}
}