mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
89 lines
3.4 KiB
JSON
89 lines
3.4 KiB
JSON
{
|
|
"name": "magicmirror",
|
|
"version": "2.12.0-develop",
|
|
"description": "The open source modular smart mirror platform.",
|
|
"main": "js/electron.js",
|
|
"scripts": {
|
|
"start": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js",
|
|
"server": "node ./serveronly",
|
|
"install": "echo \"Installing vendor files ...\n\" && cd vendor && npm install --loglevel=error",
|
|
"install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error",
|
|
"postinstall": "npm run install-fonts && echo \"MagicMirror installation finished successfully! \n\"",
|
|
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests --recursive",
|
|
"test:unit": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/unit --recursive",
|
|
"test:e2e": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/e2e --recursive",
|
|
"test:lint": "npm run test:js && npm run test:style",
|
|
"test:js": "eslint *.js js/**/*.js modules/default/**/*.js clientonly/*.js serveronly/*.js translations/*.js vendor/*.js tests/**/*.js config/* --config .eslintrc.json",
|
|
"test:style": "stylelint css/main.css modules/default/**/*.css --config .stylelintrc.json",
|
|
"config:check": "node js/check_config.js",
|
|
"lint": "npm run lint:js && npm run lint:json && npm run lint:markdown && npm run lint:style && npm run lint:yaml",
|
|
"lint:js": "eslint *.js js/**/*.js modules/default/**/*.js clientonly/*.js serveronly/*.js translations/*.js vendor/*.js tests/**/*.js config/* --config .eslintrc.json --fix",
|
|
"lint:json": "jsonlint -q package.json .eslintrc.json .markdownlintrc.json .stylelintrc.json modules/default/ translations/ vendor/package.json",
|
|
"lint:markdown": "markdownlint *.md modules/README.md modules/default/**/*.md --config .markdownlintrc.json",
|
|
"lint:style": "stylelint css/main.css modules/default/**/*.css --config .stylelintrc.json --fix",
|
|
"lint:yaml": "yamllint .travis.yml"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MichMich/MagicMirror.git"
|
|
},
|
|
"keywords": [
|
|
"magic mirror",
|
|
"smart mirror",
|
|
"mirror UI",
|
|
"modular"
|
|
],
|
|
"author": "Michael Teeuw",
|
|
"contributors": [
|
|
"https://github.com/MichMich/MagicMirror/graphs/contributors"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/MichMich/MagicMirror/issues"
|
|
},
|
|
"homepage": "https://magicmirror.builders",
|
|
"devDependencies": {
|
|
"@prantlf/jsonlint": "^10.2.0",
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"current-week-number": "^1.0.7",
|
|
"danger": "^3.1.3",
|
|
"http-auth": "^3.2.3",
|
|
"jsdom": "^11.6.2",
|
|
"markdownlint": "^0.20.1",
|
|
"markdownlint-cli": "^0.22.0",
|
|
"mocha": "^7.1.1",
|
|
"mocha-each": "^2.0.1",
|
|
"mocha-logger": "^1.0.6",
|
|
"spectron": "^8.0.0",
|
|
"stylelint": "^13.3.3",
|
|
"stylelint-config-standard": "^20.0.0",
|
|
"yaml-lint": "^1.2.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"electron": "^6.1.7"
|
|
},
|
|
"dependencies": {
|
|
"colors": "^1.1.2",
|
|
"console-stamp": "^0.2.9",
|
|
"eslint": "^6.8.0",
|
|
"express": "^4.16.2",
|
|
"express-ipfilter": "^1.0.1",
|
|
"feedme": "latest",
|
|
"helmet": "^3.21.2",
|
|
"iconv-lite": "latest",
|
|
"lodash": "^4.17.15",
|
|
"module-alias": "^2.2.2",
|
|
"moment": "latest",
|
|
"request": "^2.88.0",
|
|
"rrule": "^2.6.2",
|
|
"rrule-alt": "^2.2.8",
|
|
"simple-git": "^1.85.0",
|
|
"socket.io": "^2.1.1",
|
|
"valid-url": "latest"
|
|
},
|
|
"_moduleAliases": {
|
|
"node_helper": "js/node_helper.js"
|
|
}
|
|
}
|