Skip to content
Snippets Groups Projects
package.json 2.66 KiB
Newer Older
  • Learn to ignore specific revisions
  •   "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",
    
    Kevin Ndung'u's avatar
    Kevin Ndung'u committed
        "lint": "$(npm bin)/eslint --ext .js,.vue js",
    
        "lint:autofix": "eslint --ext .js,.vue js --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": {
        "singleQuote": true,
        "semi": false,
        "useTabs": true,
        "tabWidth": 4,
        "trailingComma": "es5"