-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
77
78
79
80
81
82
83
{
"name": "twofactor_totp",
"description": "Nextcloud TwoFactor TOTP",
"version": "13.0.0-dev.0",
"author": "Christoph Wurst <[email protected]>",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"postbuild": "build-js/npm-post-build.sh",
"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": "^2.3.0",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/logger": "^2.7.0",
"@nextcloud/password-confirmation": "^5.1.1",
"@nextcloud/router": "^2.2.1",
"vue": "^2.7.16",
"vuex": "^3.6.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"jshintConfig": {
"esversion": 6
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^6.2.0",
"@vue/test-utils": "^1.3.6",
"@vue/vue2-jest": "^29.2.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"chai": "^4.4.1",
"eslint-plugin-chai-friendly": "^0.7.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0"
},
"prettier": {
"singleQuote": true,
"semi": false,
"useTabs": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"vue"
],
"setupFilesAfterEnv": [
"./src/tests/jest.setup.js"
],
"testEnvironment": "jest-environment-jsdom",
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "@vue/vue2-jest",
".*\\.(css|styl|less|sass|scss|jpg|jpeg|png|svg|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|avif)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"/node_modules/.*/.+\\.js$"
]
}
}