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

package.json - github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eb10fcf2268f7be32c2b98cafb76f161f721b4a (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
{
  "name": "twofactor_totp",
  "description": "Nextcloud TwoFactor TOTP",
  "version": "6.2.0",
  "author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
  "license": "agpl",
  "private": true,
  "scripts": {
    "build": "webpack --progress --config src/webpack.prod.js",
    "dev": "webpack --progress --watch --config src/webpack.dev.js",
    "lint": "eslint --ext .js,.vue src",
    "lint:autofix": "eslint --ext .js,.vue src --fix",
    "test": "mochapack --webpack-config src/webpack.test.js --require src/tests/setup.js src/tests/**/*.spec.js",
    "test:watch": "mochapack -w --webpack-config src/webpack.test.js --require src/tests/setup.js src/tests/**/*.spec.js"
  },
  "dependencies": {
    "@chenfengyuan/vue-qrcode": "^1.0.2",
    "@nextcloud/auth": "^1.3.0",
    "@nextcloud/axios": "^1.6.0",
    "@nextcloud/initial-state": "^1.2.0",
    "@nextcloud/logger": "^1.1.2",
    "@nextcloud/password-confirmation": "^1.0.1",
    "@nextcloud/router": "^1.2.0",
    "@vue/babel-preset-app": "^4.5.12",
    "vue": "^2.6.12",
    "vuex": "^3.6.2"
  },
  "browserslist": [
    "last 2 versions",
    "ie >= 11"
  ],
  "engines": {
    "node": ">=14.0.0",
    "npm": ">=7.0.0"
  },
  "jshintConfig": {
    "esversion": 6
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-env": "^7.13.15",
    "@vue/test-utils": "^1.1.2",
    "babel-eslint": "^10.1.0",
    "babel-loader": "^8.2.2",
    "babel-plugin-syntax-dynamic-import": "^6.18.0",
    "chai": "^4.2.0",
    "css-loader": "^5.0.1",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-nextcloud": "^0.3.0",
    "eslint-plugin-prettier": "^3.4.0",
    "eslint-plugin-vue": "^7.9.0",
    "file-loader": "^6.2.0",
    "jsdom": "^16.5.3",
    "jsdom-global": "^3.0.2",
    "mocha": "^8.2.1",
    "mochapack": "^2.0.6",
    "prettier": "2.2.1",
    "sass-loader": "^10.1.0",
    "sinon": "^9.2.2",
    "url-loader": "^4.1.1",
    "vue-loader": "^15.9.6",
    "vue-server-renderer": "^2.6.12",
    "vue-template-compiler": "^2.6.12",
    "webpack": "^4.46.0",
    "webpack-cli": "^4.4.0",
    "webpack-merge": "^5.7.3",
    "webpack-node-externals": "^2.5.2"
  },
  "prettier": {
    "singleQuote": true,
    "semi": false,
    "useTabs": true,
    "tabWidth": 4,
    "trailingComma": "es5"
  }
}