Skip to content
Snippets Groups Projects
package.json 4.55 KiB
Newer Older
{
  "name": "nextcloud",
  "description": "Nextcloud Server",
  "private": true,
  "directories": {
    "lib": "lib",
    "test": "tests"
  },
  "scripts": {
    "build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
John Molakvoæ's avatar
John Molakvoæ committed
    "dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
    "watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
John Molakvoæ's avatar
John Molakvoæ committed
    "lint:fix": "ESLINT_FIX=true webpack --progress --config webpack.dev.js",
    "lint:fix-watch": "ESLINT_FIX=true webpack --progress --watch --config webpack.dev.js",
    "test": "mochapack --webpack-config core/webpack.test.js --require core/src/tests/setup.js \"core/src/tests/**/*.spec.js\"",
    "test:watch": "mochapack -w --webpack-config core/webpack.test.js --require core/src/tests/setup.js \"core/src/tests/**/*.spec.js\""
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nextcloud/server.git"
  },
  "keywords": [
    "nextcloud"
  ],
  "license": "AGPL-3.0-or-later",
  "dependencies": {
    "davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.2.1",
    "jcrop": "git+https://github.com/ChristophWurst/Jcrop.git#v0.9.12-npm3",
    "strengthify": "git+https://github.com/MorrisJobke/strengthify.git#0.5.9",
  },
  "devDependencies": {
  },
  "browserslist": [
    "extends @nextcloud/browserslist-config"
John Molakvoæ's avatar
John Molakvoæ committed
  ],
  "engines": {
    "node": ">=10.0.0"
  }