forked from CFenner/MMM-Netatmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.23 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
58
{
"name": "netatmo",
"version": "2.0.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 *.md",
"fix:js": "eslint --fix **/*.js",
"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",
"smarthome"
],
"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.1291.0",
"dotenv": "16.3.1",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"jsonlint-newline-fork": "1.6.8",
"less": "4.2.0",
"markdownlint": "0.32.1",
"stylelint": "16.5.0",
"stylelint-config-standard": "36.0.0"
},
"snyk": true,
"dependencies": {
"@ungap/url-search-params": "0.2.2"
}
}