-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
52 lines (52 loc) · 2.08 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
{
"name": "netatmo",
"version": "2.1.0",
"description": "A module for the MagicMirror² to display information about your rooms climate from your Netatmo system.",
"main": "netatmo.js",
"scripts": {
"compile": "npm run compile:css",
"compile:css": "lessc netatmo.bubbles.less netatmo.bubbles.css && lessc netatmo.classic.less netatmo.classic.css",
"validate": "npm run validate:css && npm run validate:js && npm run validate:json && npm run validate:md",
"validate:css": "stylelint **/*.css",
"validate:js": "eslint '**/*.js'",
"validate:json": "find . -type f -name '*.json' ! -path './node_modules/*' -exec jsonlint {} --insert-final-newline --in-place ';'",
"validate:md": "node_modules/.bin/markdownlint-cli2 *.md",
"fix:js": "npm run validate:js -- --fix",
"test": "npm run test:js",
"test:js": "jest *.test.js",
"docker:clean": "rm -f compose/config/config.js && rm -f compose/config/config.js_* && rm -rf compose/css && rm -rf compose/modules",
"docker:server": "docker compose --file compose/docker-compose.yml up",
"docker:clone": "git clone https://github.com/CFenner/MMM-Netatmo compose/modules/netatmo",
"docker:install": "npm clean-install --production --ignore-scripts --prefix compose/modules/netatmo",
"snyk-protect": "snyk-protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CFenner/MagicMirror-Netatmo-Module.git"
},
"keywords": [
"magicmirror",
"netatmo",
"smart home"
],
"author": "Christopher Fenner",
"license": "MIT",
"bugs": {
"url": "https://github.com/CFenner/MagicMirror-Netatmo-Module/issues"
},
"homepage": "https://github.com/CFenner/MagicMirror-Netatmo-Module#readme",
"devDependencies": {
"@snyk/protect": "1.1294.3",
"eslint": "9.17.0",
"jest": "29.7.0",
"jsonlint-newline-fork": "1.6.8",
"less": "4.2.0",
"markdownlint": "0.37.3",
"markdownlint-cli2": "0.17.1",
"neostandard": "0.11.5",
"stylelint": "16.12.0",
"stylelint-config-standard": "36.0.1"
},
"snyk": true
}