2016-03-27 20:40:07 +02:00
|
|
|
{
|
2016-04-05 15:43:52 -04:00
|
|
|
"name": "magicmirror",
|
2020-04-01 12:28:40 +02:00
|
|
|
"version": "2.12.0-develop",
|
2017-03-19 16:54:36 -03:00
|
|
|
"description": "The open source modular smart mirror platform.",
|
2016-04-05 15:43:52 -04:00
|
|
|
"main": "js/electron.js",
|
|
|
|
"scripts": {
|
2020-02-01 15:02:47 +01:00
|
|
|
"start": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js",
|
2020-02-01 13:56:15 +01:00
|
|
|
"server": "node ./serveronly",
|
2020-02-01 14:41:46 +01:00
|
|
|
"install": "echo \"Installing vendor files ...\n\" && cd vendor && npm install --loglevel=error",
|
|
|
|
"install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error",
|
2020-02-01 14:52:52 +01:00
|
|
|
"postinstall": "npm run install-fonts && echo \"MagicMirror installation finished successfully! \n\"",
|
2017-03-18 09:33:03 -03:00
|
|
|
"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",
|
2020-03-11 11:12:30 +01:00
|
|
|
"test:lint": "grunt --env=test",
|
2018-02-10 12:32:43 +01:00
|
|
|
"config:check": "node tests/configs/check_config.js",
|
2020-03-11 11:12:30 +01:00
|
|
|
"lint": "grunt --env=lint"
|
2016-04-05 15:43:52 -04:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/MichMich/MagicMirror.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"magic mirror",
|
|
|
|
"smart mirror",
|
|
|
|
"mirror UI",
|
|
|
|
"modular"
|
|
|
|
],
|
|
|
|
"author": "Michael Teeuw",
|
2016-11-17 09:34:11 -05:00
|
|
|
"contributors": [
|
|
|
|
"https://github.com/MichMich/MagicMirror/graphs/contributors"
|
|
|
|
],
|
2016-04-05 15:43:52 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/MichMich/MagicMirror/issues"
|
|
|
|
},
|
2017-03-25 00:26:47 -03:00
|
|
|
"homepage": "https://magicmirror.builders",
|
2016-04-05 15:43:52 -04:00
|
|
|
"devDependencies": {
|
2020-01-01 20:26:16 +01:00
|
|
|
"chai": "^4.1.2",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2017-04-12 22:29:20 -03:00
|
|
|
"current-week-number": "^1.0.7",
|
2018-01-25 16:24:05 +01:00
|
|
|
"danger": "^3.1.3",
|
2016-05-03 19:51:07 -04:00
|
|
|
"grunt": "latest",
|
|
|
|
"grunt-eslint": "latest",
|
2016-09-10 16:41:57 -04:00
|
|
|
"grunt-jsonlint": "latest",
|
2019-06-05 10:26:20 +02:00
|
|
|
"grunt-markdownlint": "latest",
|
2016-09-10 16:41:57 -04:00
|
|
|
"grunt-stylelint": "latest",
|
|
|
|
"grunt-yamllint": "latest",
|
2018-01-01 12:36:53 +01:00
|
|
|
"http-auth": "^3.2.3",
|
2018-02-10 12:32:43 +01:00
|
|
|
"jsdom": "^11.6.2",
|
2020-01-20 21:57:57 +00:00
|
|
|
"mocha": "^7.0.0",
|
2020-01-01 20:26:16 +01:00
|
|
|
"mocha-each": "^1.1.0",
|
|
|
|
"mocha-logger": "^1.0.6",
|
2020-01-20 21:57:57 +00:00
|
|
|
"spectron": "^8.0.0",
|
2019-06-05 16:54:32 +02:00
|
|
|
"stylelint": "latest",
|
2016-05-03 19:51:07 -04:00
|
|
|
"stylelint-config-standard": "latest",
|
2018-04-03 19:38:00 +02:00
|
|
|
"time-grunt": "latest"
|
2016-04-05 15:43:52 -04:00
|
|
|
},
|
2019-10-24 09:20:33 -05:00
|
|
|
"optionalDependencies": {
|
2020-01-20 21:57:57 +00:00
|
|
|
"electron": "^6.1.7"
|
2019-10-24 09:20:33 -05:00
|
|
|
},
|
2016-04-05 15:43:52 -04:00
|
|
|
"dependencies": {
|
2017-02-21 20:21:46 -03:00
|
|
|
"colors": "^1.1.2",
|
2019-09-05 20:04:55 +00:00
|
|
|
"console-stamp": "^0.2.9",
|
2018-01-01 12:36:53 +01:00
|
|
|
"express": "^4.16.2",
|
2019-06-05 16:54:32 +02:00
|
|
|
"express-ipfilter": "^1.0.1",
|
2016-04-05 15:43:52 -04:00
|
|
|
"feedme": "latest",
|
2019-12-19 21:02:39 -07:00
|
|
|
"helmet": "^3.21.2",
|
2016-04-05 15:43:52 -04:00
|
|
|
"iconv-lite": "latest",
|
2019-12-19 21:02:39 -07:00
|
|
|
"lodash": "^4.17.15",
|
2020-01-01 19:17:23 +01:00
|
|
|
"module-alias": "^2.2.2",
|
2016-04-05 15:43:52 -04:00
|
|
|
"moment": "latest",
|
2019-06-13 14:42:21 -05:00
|
|
|
"request": "^2.88.0",
|
|
|
|
"rrule": "^2.6.2",
|
2018-10-03 22:43:29 +02:00
|
|
|
"rrule-alt": "^2.2.8",
|
2018-01-01 12:36:53 +01:00
|
|
|
"simple-git": "^1.85.0",
|
2018-09-08 23:40:39 +02:00
|
|
|
"socket.io": "^2.1.1",
|
2019-06-04 10:13:58 +02:00
|
|
|
"valid-url": "latest"
|
2020-01-01 19:17:23 +01:00
|
|
|
},
|
|
|
|
"_moduleAliases": {
|
2020-01-01 20:18:48 +01:00
|
|
|
"node_helper": "js/node_helper.js"
|
2016-11-06 12:37:04 +01:00
|
|
|
}
|
2016-09-08 15:14:00 -04:00
|
|
|
}
|