Skip to content
Snippets Groups Projects
package.json 2.73 KiB
Newer Older
  "name": "mail",
  "description": "Nextcloud Mail",
  "version": "1.0.0",
  "author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
  "license": "agpl",
  "private": true,
  "scripts": {
    "build": "webpack --progress --hide-modules --config webpack.prod.js",
    "dev": "webpack --progress --watch --config webpack.dev.js",
Christoph Wurst's avatar
Christoph Wurst committed
    "lint": "eslint --ext .js,.vue src",
    "lint:autofix": "eslint --ext .js,.vue src --fix",
    "test": "mocha-webpack --webpack-config webpack.test.js --require src/tests/setup.js \"src/tests/**/*.spec.js\"",
    "test:watch": "mocha-webpack -w --webpack-config webpack.test.js --require src/tests/setup.js \"src/tests/**/*.spec.js\""
  },
  "dependencies": {
    "vuex-router-sync": "^5.0.0"
  },
  "browserslist": [
    "last 2 versions",
    "ie >= 11"
  ],
  "devDependencies": {
Kevin Ndung'u's avatar
Kevin Ndung'u committed
  "prettier": {
Christoph Wurst's avatar
Christoph Wurst committed
    "bracketSpacing": false,
Kevin Ndung'u's avatar
Kevin Ndung'u committed
    "singleQuote": true,
    "semi": false,
    "useTabs": true,
Christoph Wurst's avatar
Christoph Wurst committed
    "printWidth": 120,
Kevin Ndung'u's avatar
Kevin Ndung'u committed
    "tabWidth": 4,
    "trailingComma": "es5"