forked from jclarke0000/MMM-MyScoreboard
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.83 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mmm-myscoreboard",
"version": "4.15.0",
"type": "commonjs",
"description": "A MagicMirror² module to display scores for your favorite teams from many major sports.",
"repository": {
"type": "git",
"url": "git+https://github.com/dathbe/MMM-MyScoreboard.git"
},
"keywords": [
"MagicMirror",
"Module",
"Sports",
"Scores",
"NBA",
"WNBA",
"NCAA",
"NCAAM",
"NCAAW",
"Basketball",
"MLB",
"Baseball",
"NFL",
"NCAAF",
"CFL",
"Football",
"NHL",
"Hockey",
"MLS",
"NWSL",
"Soccer",
"Lacrosse",
"Rugby"
],
"author": "Jeff Clarke",
"contributors": [
{"name": "Jeff Clarke"},
{"name": "dathbe"},
{"name": "mikeyounge"},
{"name": "szech"},
{"name": "jvoss117-2"},
{"name": "gerber55555"}
],
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "node --run test:unit && node --run test:e2e",
"test:unit": "node --test --import ./tests/setup.js \"tests/unit/**/*.test.js\"",
"test:unit:watch": "node --test --watch --import ./tests/setup.js \"tests/unit/**/*.test.js\"",
"test:e2e": "node tests/e2e/run-mode.js curated",
"test:e2e:pairwise": "node tests/e2e/run-mode.js pairwise",
"test:e2e:full": "node tests/e2e/run-mode.js full",
"test:e2e:install": "node tests/e2e/mm-bootstrap/install-mm.mjs && playwright install chromium",
"test:screenshots": "playwright test --config tests/e2e/playwright.config.js --update-snapshots",
"fixtures:capture": "node tests/fixtures/capture.js"
},
"license": "MIT",
"dependencies": {
"moment-timezone": "^0.6.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.8.0",
"globals": "^17.7.0",
"linkedom": "^0.18.13"
}
}