Skip to content
Snippets Groups Projects
package.json 2.4 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 js/webpack.prod.js",
    "dev": "webpack --progress --watch --config js/webpack.dev.js",
Kevin Ndung'u's avatar
Kevin Ndung'u committed
    "test": "./node_modules/.bin/jest",
    "lint": "$(npm bin)/eslint --ext .js,.vue js",
    "lint:autofix": "eslint --ext .js,.vue js --fix"
  },
  "dependencies": {
    "vuex": "^3.0.1",
    "vuex-router-sync": "^5.0.0"
  },
  "browserslist": [
    "last 2 versions",
    "ie >= 11"
  ],
  "devDependencies": {
    "webpack-merge": "^4.1.2"
  },
  "jest": {
    "transform": {
      "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
      ".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
    }
Kevin Ndung'u's avatar
Kevin Ndung'u committed
  },
  "prettier": {
    "singleQuote": true,
    "semi": false,
    "useTabs": true,
    "tabWidth": 4,
    "trailingComma": "es5"