Skip to content
Snippets Groups Projects
package.json 4.28 KiB
Newer Older
Christoph Wurst's avatar
Christoph Wurst committed
  "name": "nextcloud-mail",
  "description": "Nextcloud Mail",
Christoph Wurst's avatar
Christoph Wurst committed
  "version": "1.7.0",
  "author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
  "license": "agpl",
  "private": true,
  "scripts": {
    "build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
    "dev": "NODE_ENV=development webpack --config webpack.dev.js",
    "watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
    "lint": "eslint --ext .js,.vue --ignore-pattern tests src",
    "lint:fix": "eslint --ext .js,.vue --ignore-pattern tests src --fix",
    "test": "mochapack --webpack-config webpack.test.js --require src/tests/setup.js \"src/tests/**/*.spec.js\"",
    "test:watch": "mochapack -w --webpack-config webpack.test.js --require src/tests/setup.js \"src/tests/**/*.spec.js\""
  },
  "dependencies": {
    "davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.2.1",
    "vuex-router-sync": "^5.0.0"
  },
  "browserslist": [
    "extends @nextcloud/browserslist-config"
  ],
  "devDependencies": {