Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da7fd83c90fc6ffd74c5087e7087f7b54ef0d6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
  "name": "privacy",
  "version": "1.0.0",
  "description": "Place this app in **nextcloud/apps/**",
  "main": "js/script.js",
  "directories": {
    "lib": "lib",
    "test": "tests"
  },
  "private": true,
  "scripts": {
    "dev": "webpack --config webpack.dev.js",
    "watch": "webpack --progress --watch --config webpack.dev.js",
    "build": "webpack --progress --hide-modules --config webpack.prod.js",
    "lint": "eslint --ext .js,.vue src",
    "lint:fix": "eslint --ext .js,.vue src tests --fix",
    "stylelint": "stylelint src",
    "stylelint:fix": "stylelint src --fix",
    "test": "jest",
    "test:coverage": "jest --coverage"
  },
  "homepage": "https://github.com/nextcloud/privacy",
  "author": "Georg Ehrke",
  "license": "AGPL-3.0-or-later",
  "dependencies": {
    "@babel/polyfill": "^7.4.4",
    "nextcloud-axios": "^0.2.0",
    "nextcloud-server": "^0.15.10",
    "nextcloud-vue": "^0.12.1",
    "vue": "^2.6.10",
    "vue-click-outside": "^1.0.7",
    "vuex": "^3.1.1"
  },
  "browserslist": [
    "last 2 versions",
    "ie >= 11"
  ],
  "engines": {
    "node": ">=10.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.5.5",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/preset-env": "^7.5.5",
    "@vue/test-utils": "^1.0.0-beta.29",
    "babel-eslint": "^10.0.2",
    "babel-jest": "^24.8.0",
    "babel-loader": "^8.0.6",
    "css-loader": "^3.2.0",
    "eslint": "^5.16.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-friendly-formatter": "^4.0.1",
    "eslint-loader": "^2.2.1",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-node": "^9.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.0",
    "eslint-plugin-vue": "^5.2.3",
    "jest": "^24.8.0",
    "jest-serializer-vue": "^2.0.2",
    "prettier-eslint": "^9.0.0",
    "stylelint": "^10.1.0",
    "stylelint-config-recommended-scss": "^3.3.0",
    "stylelint-scss": "^3.9.3",
    "stylelint-webpack-plugin": "^0.10.5",
    "vue-jest": "^3.0.4",
    "vue-loader": "^15.7.1",
    "vue-template-compiler": "^2.6.10",
    "webpack": "^4.39.1",
    "webpack-cli": "^3.3.6",
    "webpack-merge": "^4.2.1"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "vue"
    ],
    "moduleNameMapper": {
      "^@/(.*)$": "<rootDir>/src/$1"
    },
    "transform": {
      "^.+\\.js$": "babel-jest",
      "^.+\\.vue$": "vue-jest"
    },
    "snapshotSerializers": [
      "<rootDir>/node_modules/jest-serializer-vue"
    ],
    "globals": {
      "t": true,
      "n": true,
      "OC": true,
      "OCA": true
    }
  }
}