-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 2.16 KB
/
package.json
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
{
"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.21.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"
}