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: d3cb9274d67cc59dfb7cd46daff433334ff8b8a5 (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
{
  "name": "twofactor_totp",
  "description": "Nextcloud TwoFactor TOTP",
  "version": "2.0.0",
  "author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
  "license": "agpl",
  "private": true,
  "scripts": {
    "build": "webpack --progress --hide-modules --config src/webpack.prod.js",
    "dev": "webpack --progress --watch --config src/webpack.dev.js",
    "lint": "$(npm bin)/eslint --ext .js,.vue js",
    "lint:autofix": "eslint --ext .js,.vue src --fix",
    "test": "mocha-webpack --webpack-config src/webpack.test.js --require src/tests/setup.js src/tests/**/*.spec.js",
    "test:watch": "mocha-webpack -w --webpack-config src/webpack.test.js --require src/tests/setup.js src/tests/**/*.spec.js"
  },
  "dependencies": {
    "@vue/babel-preset-app": "^3.1.1",
    "nextcloud-axios": "^0.1.2",
    "nextcloud-password-confirmation": "^0.3.1",
    "nextcloud-server": "^0.15.6",
    "nextcloud-vue": "^0.4.2",
    "vue": "^2.5.16",
    "vuex": "^3.0.1"
  },
  "browserslist": [
    "last 2 versions",
    "ie >= 11"
  ],
  "jshintConfig": {
    "esversion": 6
  },
  "devDependencies": {
    "@babel/core": "^7.1.5",
    "@babel/preset-env": "^7.1.5",
    "@vue/test-utils": "^1.0.0-beta.25",
    "babel-eslint": "^10.0.1",
    "babel-loader": "^8.0.2",
    "babel-plugin-syntax-dynamic-import": "^6.18.0",
    "chai": "^4.2.0",
    "css-loader": "^1.0.1",
    "eslint": "^5.9.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-plugin-prettier": "^3.0.0",
    "eslint-plugin-vue": "^5.0.0-beta.3",
    "file-loader": "^2.0.0",
    "jsdom": "^13.0.0",
    "jsdom-global": "^3.0.2",
    "mocha": "^5.2.0",
    "mocha-webpack": "^2.0.0-beta.0",
    "node-sass": "^4.10.0",
    "prettier": "1.15.2",
    "sass-loader": "^7.0.3",
    "sinon": "^7.1.1",
    "url-loader": "^1.1.2",
    "vue-loader": "^15.4.2",
    "vue-server-renderer": "^2.5.17",
    "vue-template-compiler": "^2.5.16",
    "webpack": "^4.25.1",
    "webpack-cli": "^3.1.2",
    "webpack-merge": "^4.1.2",
    "webpack-node-externals": "^1.7.2"
  },
  "prettier": {
    "singleQuote": true,
    "semi": false,
    "useTabs": true,
    "tabWidth": 4,
    "trailingComma": "es5"
  }
}