-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.44 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
49
50
51
52
53
54
55
56
57
{
"name": "MMM-RBB-Weather",
"version": "2.3.0",
"description": "MagicMirror module to display RBB weather data.",
"author": "Nikolai Keist",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nkl-kst/MMM-RBB-Weather.git"
},
"main": "MMM-RBB-Weather.js",
"scripts": {
"test": "nyc mocha test/unit --recursive",
"test-tpl": "mocha test/int/templates --recursive",
"test-int": "mocha test/int --recursive",
"test-e2e": "mocha test/e2e --recursive",
"eslint": "eslint --ignore-pattern coverage/ .",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"dependencies": {
"bluebird": "^3.7.2",
"fast-xml-parser": "^3.17.4"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"libxmljs": "^0.19.7",
"lodash.clonedeep": "^4.5.0",
"mocha": "^8.2.0",
"moment": "^2.29.1",
"nunjucks": "^3.2.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"shelljs": "^0.8.4",
"sinon": "^9.2.0",
"spectron": "8.0.0"
},
"nyc": {
"reporter": [
"text",
"html",
"lcov"
],
"exclude": [
"test",
"coverage",
"Logger.js"
],
"cache": true,
"all": true
}
}