-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
{
"name": "twofactor_totp",
"description": "Nextcloud TwoFactor TOTP",
"version": "8.0.0-alpha0",
"author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
"license": "agpl",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@nextcloud/auth": "^1.3.0",
"@nextcloud/axios": "^2.1.0",
"@nextcloud/initial-state": "^1.2.1",
"@nextcloud/logger": "^2.1.0",
"@nextcloud/password-confirmation": "^1.0.1",
"@nextcloud/router": "^2.0.0",
"vue": "^2.6.14",
"vuex": "^3.6.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
},
"jshintConfig": {
"esversion": 6
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^7.0.2",
"@nextcloud/stylelint-config": "^2.1.2",
"@nextcloud/webpack-vue-config": "^5.1.0",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"chai": "^4.3.6",
"eslint-plugin-chai-friendly": "^0.7.2",
"jest": "^27.5.1",
"vue-jest": "^3.0.7"
},
"prettier": {
"singleQuote": true,
"semi": false,
"useTabs": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"vue"
],
"setupFilesAfterEnv": [
"./src/tests/jest.setup.js"
],
"testEnvironment": "jsdom",
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "vue-jest"
}
}
}