-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "mmm-microsofttodo",
"version": "1.0.0",
"description": "MMM-MicrosoftToDo is a 3rd party module for MagicMirror (https://github.com/MichMich/MagicMirror) that shows open tasks from task lists. The tasks are retrieved from the Microsoft To Do / Outlook (https://todo.microsoft.com).",
"main": "node_helper.js",
"scripts": {
"test": "npm run test:prettier && npm run test:lint",
"test:lint": "eslint *.js --config .eslintrc.json",
"test:prettier": "prettier --check **/*.{js,css,json,md,yml}",
"lint:prettier": "prettier --write **/*.{js,css,json,md,yml}",
"lint:js": "eslint *.js --config .eslintrc.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thobach/MMM-MicrosoftToDo.git"
},
"keywords": [
"todo",
"microsoft",
"magicmirror",
"magic",
"mirror",
"module"
],
"author": "@thobach",
"license": "MIT",
"bugs": {
"url": "https://github.com/thobach/MMM-MicrosoftToDo/issues"
},
"homepage": "https://github.com/thobach/MMM-MicrosoftToDo#readme",
"dependencies": {
"async-sema": "^3.1.1",
"date-fns": "^2.30.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.2.1"
}
}