twofactor_webauthn/package.json

67 строки
2.2 KiB
JSON

{
"name": "twofactor_webauthn",
"version": "2.1.0-dev.0",
"description": "WebAuthn second factor provider for Nextcloud",
"private": true,
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/password-confirmation": "^5.1.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.20.0",
"@simplewebauthn/browser": "^11.0.0",
"vue": "^2.7.16",
"vue-click-outside": "^1.1.0",
"vue-material-design-icons": "^5.3.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/webpack-vue-config": "^6.2.0",
"@playwright/test": "^1.48.2",
"@vue/test-utils": "^1.3.6",
"chai": "^4.5.0",
"jsdom": "^21.1.2",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"mochapack": "^2.1.4",
"vue-template-compiler": "^2.7.16"
},
"scripts": {
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"build": "webpack --node-env production --progress",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"test:unit": "mochapack --mode development --webpack-config webpack.test.config.js --require src/tests/unit/setup.js src/tests/unit/**/*.spec.js",
"test:unit:watch": "mochapack --mode development -w --webpack-config webpack.test.config.js --require src/tests/unit/setup.js src/tests/unit/**/*.spec.js",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"browserslist": [
"last 2 versions",
"ie >= 11"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"jshintConfig": {
"esversion": 6
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/twofactor_webauthn.git"
},
"author": "Christoph Wurst",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nextcloud/twofactor_webauthn/issues"
},
"homepage": "https://github.com/nextcloud/twofactor_webauthn#readme"
}