2016-03-27 20:40:07 +02:00
|
|
|
{
|
2016-04-05 15:43:52 -04:00
|
|
|
"name": "magicmirror",
|
2018-07-04 11:32:04 +02:00
|
|
|
"version": "2.5.0-dev",
|
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": {
|
2017-01-24 02:12:36 -03:00
|
|
|
"start": "sh run-start.sh",
|
2018-04-03 19:38:00 +02:00
|
|
|
"install": "cd vendor && npm install",
|
|
|
|
"install-fonts": "cd fonts && npm install",
|
|
|
|
"postinstall": "sh installers/postinstall/postinstall.sh && npm run install-fonts",
|
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",
|
2018-02-10 12:32:43 +01:00
|
|
|
"config:check": "node tests/configs/check_config.js",
|
|
|
|
"lint": "grunt"
|
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": {
|
2018-01-01 12:36:53 +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",
|
2018-01-01 12:36:53 +01:00
|
|
|
"grunt-markdownlint": "^1.0.43",
|
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",
|
2018-01-01 12:36:53 +01:00
|
|
|
"jshint": "^2.9.5",
|
|
|
|
"mocha": "^4.1.0",
|
2017-08-21 14:44:47 +02:00
|
|
|
"mocha-each": "^1.1.0",
|
2018-01-01 12:36:53 +01:00
|
|
|
"spectron": "3.7.x",
|
|
|
|
"stylelint": "^8.4.0",
|
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
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-01 12:36:53 +01:00
|
|
|
"body-parser": "^1.18.2",
|
2017-02-21 20:21:46 -03:00
|
|
|
"colors": "^1.1.2",
|
2018-05-11 16:23:43 +02:00
|
|
|
"electron": "^2.0.0",
|
2018-01-01 12:36:53 +01:00
|
|
|
"express": "^4.16.2",
|
2017-09-04 23:12:07 -03:00
|
|
|
"express-ipfilter": "0.3.1",
|
2016-04-05 15:43:52 -04:00
|
|
|
"feedme": "latest",
|
2018-01-01 12:36:53 +01:00
|
|
|
"helmet": "^3.9.0",
|
2016-04-05 15:43:52 -04:00
|
|
|
"iconv-lite": "latest",
|
2017-08-28 21:30:36 -03:00
|
|
|
"mocha-logger": "^1.0.5",
|
2016-04-05 15:43:52 -04:00
|
|
|
"moment": "latest",
|
2018-01-01 12:36:53 +01:00
|
|
|
"request": "^2.83.0",
|
|
|
|
"rrule-alt": "^2.2.7",
|
|
|
|
"simple-git": "^1.85.0",
|
|
|
|
"socket.io": "^2.0.4",
|
2016-04-05 15:43:52 -04:00
|
|
|
"valid-url": "latest",
|
2016-09-22 19:56:54 +02:00
|
|
|
"walk": "latest"
|
2016-11-06 12:37:04 +01:00
|
|
|
}
|
2016-09-08 15:14:00 -04:00
|
|
|
}
|