72 строки
2.2 KiB
JSON
72 строки
2.2 KiB
JSON
{
|
|
"name": "twofactor_totp",
|
|
"description": "Nextcloud TwoFactor TOTP",
|
|
"version": "2.1.2",
|
|
"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": {
|
|
"@chenfengyuan/vue-qrcode": "^1.0.1",
|
|
"@vue/babel-preset-app": "^3.9.0",
|
|
"nextcloud-axios": "^0.2.0",
|
|
"nextcloud-password-confirmation": "^0.4.1",
|
|
"nextcloud-server": "^0.15.10",
|
|
"nextcloud-vue": "^0.11.4",
|
|
"vue": "^2.6.10",
|
|
"vuex": "^3.1.1"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions",
|
|
"ie >= 11"
|
|
],
|
|
"jshintConfig": {
|
|
"esversion": 6
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.5.0",
|
|
"@babel/preset-env": "^7.4.5",
|
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
|
"chai": "^4.2.0",
|
|
"css-loader": "^2.1.1",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-prettier": "^4.3.0",
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
"eslint-plugin-vue": "^5.2.2",
|
|
"file-loader": "^4.0.0",
|
|
"jsdom": "^15.1.1",
|
|
"jsdom-global": "^3.0.2",
|
|
"mocha": "^5.2.0",
|
|
"mocha-webpack": "^2.0.0-beta.0",
|
|
"node-sass": "^4.12.0",
|
|
"prettier": "1.18.2",
|
|
"sass-loader": "^7.0.3",
|
|
"sinon": "^7.3.2",
|
|
"url-loader": "^2.0.1",
|
|
"vue-loader": "^15.7.0",
|
|
"vue-server-renderer": "^2.6.10",
|
|
"vue-template-compiler": "^2.6.10",
|
|
"webpack": "^4.35.2",
|
|
"webpack-cli": "^3.3.4",
|
|
"webpack-merge": "^4.2.1",
|
|
"webpack-node-externals": "^1.7.2"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"semi": false,
|
|
"useTabs": true,
|
|
"tabWidth": 4,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|