-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "MMM-ModuleScheduler",
"version": "1.5.0",
"description": "A MagicMirror helper module to schedule when modules should be shown, hidden or dimmed and when notifications should be sent.",
"main": "MMM-ModuleScheduler.js",
"scripts": {
"test": "npm run test:unit && npm run test:prettier && npm run test:js",
"test:unit": "NODE_ENV=test mocha tests --recursive",
"test:prettier": "prettier --check **/*.{js,css,json,md,yml}",
"test:js": "eslint *.js tests/**/*.js --config .eslintrc.json",
"lint:prettier": "prettier --write **/*.{js,css,json,md,yml}",
"lint:js": "eslint *.js tests/**/*.js --config .eslintrc.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianperrin/MMM-ModuleScheduler.git"
},
"keywords": [
"MagicMirror",
"Module",
"Scheduler"
],
"author": "Ian Perrin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianperrin/MMM-ModuleScheduler/issues"
},
"homepage": "https://github.com/ianperrin/MMM-ModuleScheduler#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.2.1",
"module-alias": "^2.2.2",
"prettier": "^2.2.1"
},
"dependencies": {
"cron": "^1.8.2"
}
}