MagicMirror/package.json

74 lines
2.1 KiB
JSON
Raw Normal View History

2016-03-27 20:40:07 +02:00
{
2016-04-05 15:43:52 -04:00
"name": "magicmirror",
2018-01-01 12:59:28 +01:00
"version": "2.3.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",
"install": "cd vendor && npm install",
2017-08-06 01:13:52 -04:00
"install-fonts": "cd fonts && npm install",
"postinstall": "sh installers/postinstall/postinstall.sh && npm run install-fonts",
"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",
"config:check": "node tests/configs/check_config.js"
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",
"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",
"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",
"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",
2016-09-10 16:41:57 -04: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",
"colors": "^1.1.2",
2018-01-01 12:59:28 +01:00
"electron": "^1.7.10",
2018-01-01 12:36:53 +01:00
"express": "^4.16.2",
"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",
"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"
}
}