This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 3.27 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@nextcloud/vue-dashboard",
"version": "2.0.1",
"description": "Vue component for dashboard",
"keywords": [
"vuejs",
"components"
],
"repository": "https://github.com/nextcloud-libraries/nextcloud-vue-dashboard",
"homepage": "https://github.com/nextcloud-libraries/nextcloud-vue-dashboard",
"bugs": "https://github.com/nextcloud-libraries/nextcloud-vue-dashboard/issues",
"author": "Julius Härtl <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"watch": "NODE_ENV=development rollup -c --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"main": "dist/vue-dashboard.js",
"library": "dist/vue-dashboard.js",
"files": [
"LICENSE",
"README.md",
"dist"
],
"peerDependencies": {
"@nextcloud/vue": "^3.1.1",
"vue": "^2.6.11"
},
"dependencies": {
"@nextcloud/vue": "^3.1.1",
"core-js": "^3.6.4",
"vue": "^2.6.11"
},
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^2.2.0",
"@nextcloud/eslint-plugin": "^1.4.0",
"@vue/babel-preset-app": "^5.0.4",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^29.2.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-nextcloud": "^0.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^6.1.2",
"jest": "^27.0.4",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^7.0.0",
"prettier-eslint": "^14.0.1",
"resolve-url-loader": "^5.0.0",
"rollup": "^2.0.3",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-vue": "^5.1.6",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.14.2",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}