-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.16 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
48
{
"name": "mmm-onthisday",
"version": "0.1.2",
"description": "MagicMirror² module to display historical events.",
"author": "Nikolai Keist",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nkl-kst/MMM-OnThisDay.git"
},
"keywords": [
"events",
"history",
"wikipedia"
],
"main": "MMM-OnThisDay.js",
"scripts": {
"prettier:fix": "prettier --write .",
"test": "nyc mocha test/unit --recursive && prettier --check .",
"test-functional": "mocha test/functional --recursive"
},
"dependencies": {
"follow-redirects": "^1.15.3",
"jsdom": "^22.1.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"coverage",
"test",
"vagrant",
"LoggerProxy.js",
"WikiCssSelectors.js"
],
"cache": true,
"all": true
}
}