2018-10-15 17:32:27 +03:00
|
|
|
{
|
|
|
|
"name": "twofactor_totp",
|
|
|
|
"description": "Nextcloud TwoFactor TOTP",
|
2020-08-26 11:47:20 +03:00
|
|
|
"version": "5.0.0",
|
2018-10-15 17:32:27 +03:00
|
|
|
"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",
|
2019-08-08 10:38:50 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
2018-10-15 17:32:27 +03:00
|
|
|
"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": {
|
2020-01-19 05:15:38 +03:00
|
|
|
"@chenfengyuan/vue-qrcode": "^1.0.2",
|
2020-06-07 04:15:27 +03:00
|
|
|
"@nextcloud/auth": "^1.3.0",
|
2020-08-31 14:56:31 +03:00
|
|
|
"@nextcloud/axios": "^1.4.0",
|
2020-04-12 06:11:07 +03:00
|
|
|
"@nextcloud/initial-state": "^1.1.2",
|
2020-03-19 15:33:19 +03:00
|
|
|
"@nextcloud/logger": "^1.1.2",
|
2020-04-12 04:16:02 +03:00
|
|
|
"@nextcloud/password-confirmation": "^1.0.1",
|
2020-06-07 04:16:22 +03:00
|
|
|
"@nextcloud/router": "^1.1.0",
|
2020-08-26 17:17:30 +03:00
|
|
|
"@vue/babel-preset-app": "^4.5.4",
|
2020-08-29 20:31:38 +03:00
|
|
|
"vue": "^2.6.12",
|
2020-08-29 21:04:51 +03:00
|
|
|
"vuex": "^3.5.1"
|
2018-10-15 17:32:27 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"ie >= 11"
|
|
|
|
],
|
2018-10-18 17:24:10 +03:00
|
|
|
"jshintConfig": {
|
|
|
|
"esversion": 6
|
|
|
|
},
|
2018-10-15 17:32:27 +03:00
|
|
|
"devDependencies": {
|
2020-08-31 16:18:23 +03:00
|
|
|
"@babel/core": "^7.11.4",
|
2020-08-10 14:19:53 +03:00
|
|
|
"@babel/preset-env": "^7.11.0",
|
2020-08-29 20:34:07 +03:00
|
|
|
"@vue/test-utils": "^1.0.5",
|
2020-03-01 08:39:19 +03:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-03-20 23:41:54 +03:00
|
|
|
"babel-loader": "^8.1.0",
|
2018-10-15 17:32:27 +03:00
|
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
|
|
|
"chai": "^4.2.0",
|
2020-08-29 20:34:39 +03:00
|
|
|
"css-loader": "^4.2.2",
|
2019-12-29 08:27:47 +03:00
|
|
|
"eslint": "^6.8.0",
|
2020-04-26 04:29:33 +03:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2019-08-27 04:14:00 +03:00
|
|
|
"eslint-plugin-nextcloud": "^0.3.0",
|
2020-08-26 17:32:06 +03:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-03-15 05:14:47 +03:00
|
|
|
"eslint-plugin-vue": "^6.2.2",
|
2020-03-20 23:43:38 +03:00
|
|
|
"file-loader": "^6.0.0",
|
2020-08-26 17:16:08 +03:00
|
|
|
"jsdom": "^16.4.0",
|
2018-10-15 17:32:27 +03:00
|
|
|
"jsdom-global": "^3.0.2",
|
2020-05-03 04:16:24 +03:00
|
|
|
"mocha": "^7.1.2",
|
2018-10-15 17:32:27 +03:00
|
|
|
"mocha-webpack": "^2.0.0-beta.0",
|
2020-03-29 04:48:33 +03:00
|
|
|
"prettier": "2.0.2",
|
2020-08-29 21:35:32 +03:00
|
|
|
"sass-loader": "^10.0.1",
|
2020-08-29 20:32:48 +03:00
|
|
|
"sinon": "^9.0.3",
|
2020-04-12 05:35:21 +03:00
|
|
|
"url-loader": "^4.1.0",
|
2020-08-26 17:16:17 +03:00
|
|
|
"vue-loader": "^15.9.3",
|
2020-08-31 14:55:15 +03:00
|
|
|
"vue-server-renderer": "^2.6.12",
|
2020-08-29 20:31:38 +03:00
|
|
|
"vue-template-compiler": "^2.6.12",
|
2020-08-31 15:11:45 +03:00
|
|
|
"webpack": "^4.44.1",
|
2020-08-26 17:16:14 +03:00
|
|
|
"webpack-cli": "^3.3.12",
|
2019-09-09 16:03:40 +03:00
|
|
|
"webpack-merge": "^4.2.2",
|
2020-08-29 20:35:13 +03:00
|
|
|
"webpack-node-externals": "^2.5.2"
|
2018-10-15 17:32:27 +03:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"singleQuote": true,
|
|
|
|
"semi": false,
|
|
|
|
"useTabs": true,
|
|
|
|
"tabWidth": 4,
|
|
|
|
"trailingComma": "es5"
|
|
|
|
}
|
|
|
|
}
|