MagicMirror/package.json

89 lines
3.4 KiB
JSON
Raw Normal View History

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\"",
"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-04-10 14:43:58 +02:00
"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",
2020-03-19 21:31:04 +01:00
"test:style": "stylelint css/main.css modules/default/**/*.css --config .stylelintrc.json",
"config:check": "node js/check_config.js",
2020-04-10 14:43:58 +02:00
"lint": "npm run lint:js && npm run lint:json && npm run lint:markdown && npm run lint:style && npm run lint:yaml",
2020-03-19 22:02:28 +01:00
"lint:js": "eslint *.js js/**/*.js modules/default/**/*.js clientonly/*.js serveronly/*.js translations/*.js vendor/*.js tests/**/*.js config/* --config .eslintrc.json --fix",
2020-04-20 11:34:16 +02:00
"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",
2020-03-19 21:31:04 +01:00
"lint:style": "stylelint css/main.css modules/default/**/*.css --config .stylelintrc.json --fix",
2020-03-18 22:56:17 +01:00
"lint:yaml": "yamllint .travis.yml"
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": {
2020-04-10 12:24:08 +02:00
"@prantlf/jsonlint": "^10.2.0",
"chai": "^4.2.0",
2020-01-01 20:26:16 +01:00
"chai-as-promised": "^7.1.1",
"current-week-number": "^1.0.7",
2018-01-25 16:24:05 +01:00
"danger": "^3.1.3",
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-04-20 11:34:24 +02:00
"markdownlint": "^0.20.1",
"markdownlint-cli": "^0.22.0",
"mocha": "^7.1.1",
"mocha-each": "^2.0.1",
2020-01-01 20:26:16 +01:00
"mocha-logger": "^1.0.6",
"spectron": "^8.0.0",
"stylelint": "^13.3.3",
2020-04-10 14:43:58 +02:00
"stylelint-config-standard": "^20.0.0",
2020-03-18 22:56:17 +01:00
"yaml-lint": "^1.2.4"
2016-04-05 15:43:52 -04:00
},
"optionalDependencies": {
"electron": "^6.1.7"
},
2016-04-05 15:43:52 -04:00
"dependencies": {
"colors": "^1.1.2",
2019-09-05 20:04:55 +00:00
"console-stamp": "^0.2.9",
"eslint": "^6.8.0",
2018-01-01 12:36:53 +01:00
"express": "^4.16.2",
"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",
"request": "^2.88.0",
"rrule": "^2.6.2",
"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",
"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"
}
}