2018-04-24 16:01:58 +03:00
|
|
|
{
|
2019-10-16 01:43:59 +03:00
|
|
|
"name": "@nextcloud/vue",
|
2022-09-29 19:28:48 +03:00
|
|
|
"version": "7.0.0-beta.7",
|
2018-04-24 16:01:58 +03:00
|
|
|
"description": "Nextcloud vue components",
|
2018-08-17 17:57:42 +03:00
|
|
|
"keywords": [
|
|
|
|
"vuejs",
|
|
|
|
"nextcloud",
|
|
|
|
"components"
|
|
|
|
],
|
2018-11-22 10:17:11 +03:00
|
|
|
"repository": "https://github.com/nextcloud/nextcloud-vue",
|
|
|
|
"homepage": "https://github.com/nextcloud/nextcloud-vue",
|
|
|
|
"bugs": "https://github.com/nextcloud/nextcloud-vue/issues",
|
2018-04-24 16:01:58 +03:00
|
|
|
"author": "John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>",
|
|
|
|
"license": "AGPL-3.0",
|
2018-08-17 17:57:42 +03:00
|
|
|
"scripts": {
|
2022-08-09 15:53:48 +03:00
|
|
|
"dev": "webpack --node-env development --progress",
|
|
|
|
"watch": "webpack --node-env development --progress --watch",
|
2022-09-21 22:38:57 +03:00
|
|
|
"build": "webpack --node-env production --progress && npm run build:module",
|
2022-09-22 15:38:59 +03:00
|
|
|
"build:module": "LIBRARY_TARGET=module webpack --node-env production --progress",
|
2020-02-13 14:45:24 +03:00
|
|
|
"l10n:extract": "node build/extract-l10n.js",
|
2018-09-27 12:33:51 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2020-01-31 00:05:54 +03:00
|
|
|
"test": "jest --verbose",
|
2022-08-09 23:43:43 +03:00
|
|
|
"test:coverage": "jest --verbose --coverage --no-cache",
|
2019-02-24 20:01:25 +03:00
|
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
2019-06-16 13:13:17 +03:00
|
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
|
|
|
|
"styleguide": "vue-styleguidist server",
|
2020-08-23 23:18:36 +03:00
|
|
|
"styleguide:build": "vue-styleguidist build",
|
2022-04-07 13:00:05 +03:00
|
|
|
"cypress": "cypress run-ct",
|
|
|
|
"cypress:gui": "cypress open-ct",
|
|
|
|
"cypress:update-snapshots": "cypress run-ct --env type=base --config screenshotsFolder=cypress/snapshots/base"
|
2018-08-17 17:57:42 +03:00
|
|
|
},
|
2018-09-13 13:47:24 +03:00
|
|
|
"main": "dist/ncvuecomponents.js",
|
2022-09-21 22:38:57 +03:00
|
|
|
"module": "dist/index.module.js",
|
2018-09-13 13:50:50 +03:00
|
|
|
"files": [
|
2021-05-12 12:10:02 +03:00
|
|
|
"CHANGELOG.md",
|
2018-09-13 13:50:50 +03:00
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"dist"
|
|
|
|
],
|
2018-08-17 17:57:42 +03:00
|
|
|
"dependencies": {
|
2022-08-18 15:47:30 +03:00
|
|
|
"@nextcloud/auth": "^2.0.0",
|
2022-08-18 16:23:46 +03:00
|
|
|
"@nextcloud/axios": "^2.0.0",
|
2020-10-16 11:56:50 +03:00
|
|
|
"@nextcloud/browser-storage": "^0.1.1",
|
2022-01-26 10:04:23 +03:00
|
|
|
"@nextcloud/calendar-js": "^3.0.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@nextcloud/capabilities": "^1.0.4",
|
2022-07-21 17:02:38 +03:00
|
|
|
"@nextcloud/dialogs": "^3.1.4",
|
2022-08-18 16:01:38 +03:00
|
|
|
"@nextcloud/event-bus": "^3.0.0",
|
2022-08-31 09:01:43 +03:00
|
|
|
"@nextcloud/initial-state": "^2.0.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@nextcloud/l10n": "^1.6.0",
|
|
|
|
"@nextcloud/logger": "^2.2.1",
|
2021-04-08 06:02:42 +03:00
|
|
|
"@nextcloud/router": "^2.0.0",
|
2021-03-10 07:09:56 +03:00
|
|
|
"debounce": "1.2.1",
|
2022-07-18 09:02:37 +03:00
|
|
|
"emoji-mart-vue-fast": "^11.1.1",
|
2020-10-06 13:16:26 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2022-04-03 12:07:46 +03:00
|
|
|
"floating-vue": "^1.0.0-beta.18",
|
2022-08-19 09:02:17 +03:00
|
|
|
"focus-trap": "^7.0.0",
|
2019-02-25 11:23:27 +03:00
|
|
|
"hammerjs": "^2.0.8",
|
2022-09-20 09:01:25 +03:00
|
|
|
"linkify-string": "^4.0.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"md5": "^2.3.0",
|
|
|
|
"splitpanes": "^2.4.1",
|
|
|
|
"string-length": "^5.0.1",
|
|
|
|
"striptags": "^3.2.0",
|
2020-10-06 13:16:26 +03:00
|
|
|
"tributejs": "^5.1.3",
|
2022-08-08 18:01:11 +03:00
|
|
|
"v-click-outside": "^3.2.0",
|
2022-08-03 16:30:49 +03:00
|
|
|
"vue": "^2.7.8",
|
2022-08-08 18:01:11 +03:00
|
|
|
"vue-color": "^2.8.1",
|
|
|
|
"vue-material-design-icons": "^5.1.2",
|
2020-04-20 22:01:44 +03:00
|
|
|
"vue-multiselect": "^2.1.6",
|
2022-08-08 18:01:11 +03:00
|
|
|
"vue2-datepicker": "^3.11.0"
|
2018-08-17 17:57:42 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-08-09 15:43:12 +03:00
|
|
|
"node": "^16.0.0",
|
|
|
|
"npm": "^7.0.0 || ^8.0.0"
|
2018-08-17 17:57:42 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-07 13:00:05 +03:00
|
|
|
"@cypress/vue": "^2.2.4",
|
|
|
|
"@cypress/webpack-dev-server": "^1.8.4",
|
2022-09-30 09:01:54 +03:00
|
|
|
"@cypress/webpack-preprocessor": "5.13.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@fontsource/roboto": "^4.5.8",
|
2021-07-27 09:58:45 +03:00
|
|
|
"@nextcloud/babel-config": "^1.0.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@nextcloud/browserslist-config": "^2.3.0",
|
2022-08-09 16:10:51 +03:00
|
|
|
"@nextcloud/eslint-config": "^8.1.2",
|
2022-04-02 16:51:22 +03:00
|
|
|
"@nextcloud/stylelint-config": "^2.1.2",
|
2022-08-08 22:11:46 +03:00
|
|
|
"@vue/test-utils": "^1.3.0",
|
2022-08-30 22:02:17 +03:00
|
|
|
"@vue/vue2-jest": "^29.0.0",
|
2022-08-30 21:53:34 +03:00
|
|
|
"babel-jest": "^29.0.1",
|
2022-08-08 22:11:46 +03:00
|
|
|
"babel-loader": "^8.2.5",
|
2020-10-06 13:16:26 +03:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.0.3",
|
2022-08-31 15:30:43 +03:00
|
|
|
"css-loader": "~6.7.1",
|
2022-08-08 18:01:11 +03:00
|
|
|
"cypress": "^9.7.0",
|
2020-08-23 23:18:36 +03:00
|
|
|
"cypress-visual-regression": "^1.5.0",
|
|
|
|
"eslint-plugin-cypress": "^2.11.1",
|
2022-08-08 18:01:11 +03:00
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"gettext-extractor": "^3.5.4",
|
2022-08-18 17:10:59 +03:00
|
|
|
"gettext-parser": "^6.0.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"glob": "^8.0.3",
|
2022-08-30 22:02:17 +03:00
|
|
|
"jest": "^29.0.1",
|
2022-09-30 09:07:14 +03:00
|
|
|
"jest-environment-jsdom": "29.1.1",
|
2020-01-31 00:05:54 +03:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
|
|
|
"jest-transform-stub": "^2.0.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"raw-loader": "^4.0.2",
|
2022-01-18 10:01:45 +03:00
|
|
|
"resolve-url-loader": "^5.0.0",
|
2020-11-05 15:43:07 +03:00
|
|
|
"sanitize-filename": "^1.6.3",
|
2022-08-08 18:01:11 +03:00
|
|
|
"sass": "^1.54.3",
|
|
|
|
"sass-loader": "^13.0.2",
|
2022-08-19 09:01:06 +03:00
|
|
|
"style-loader": "^3.3.1",
|
2022-08-08 18:01:11 +03:00
|
|
|
"url-loader": "^4.1.1",
|
|
|
|
"vue-eslint-parser": "^9.0.3",
|
2022-08-08 21:02:18 +03:00
|
|
|
"vue-loader": "^15.10.0",
|
2022-09-07 09:02:05 +03:00
|
|
|
"vue-styleguidist": "~4.54.1",
|
2022-08-19 09:01:06 +03:00
|
|
|
"vue-template-compiler": "^2.7.9",
|
2022-08-08 18:01:11 +03:00
|
|
|
"webpack": "^5.74.0",
|
|
|
|
"webpack-cli": "^4.10.0",
|
|
|
|
"webpack-merge": "^5.8.0",
|
2021-04-22 06:05:49 +03:00
|
|
|
"webpack-node-externals": "^3.0.0"
|
2019-10-17 17:26:07 +03:00
|
|
|
},
|
2020-01-31 00:05:54 +03:00
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"vue"
|
|
|
|
],
|
2021-06-15 21:48:29 +03:00
|
|
|
"testEnvironment": "jsdom",
|
2020-01-31 00:05:54 +03:00
|
|
|
"transform": {
|
2021-04-01 18:55:54 +03:00
|
|
|
"^.+\\.js$": "babel-jest",
|
2022-04-03 23:41:14 +03:00
|
|
|
"^.+\\.vue$": "@vue/vue2-jest",
|
2020-01-31 00:05:54 +03:00
|
|
|
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
|
|
|
|
},
|
2021-04-14 09:06:49 +03:00
|
|
|
"transformIgnorePatterns": [
|
|
|
|
"/node_modules/(?!vue-material-design-icons)"
|
|
|
|
],
|
2020-01-31 00:05:54 +03:00
|
|
|
"snapshotSerializers": [
|
|
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
|
|
],
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"./tests/setup.js"
|
|
|
|
],
|
|
|
|
"coverageDirectory": "./coverage/",
|
|
|
|
"collectCoverage": false,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"<rootDir>/src/**/*.{js,vue}",
|
|
|
|
"!**/node_modules/**"
|
|
|
|
],
|
|
|
|
"coverageReporters": [
|
|
|
|
"json",
|
|
|
|
"text",
|
|
|
|
"html",
|
|
|
|
"lcov",
|
|
|
|
"clover"
|
|
|
|
]
|
|
|
|
},
|
2019-10-17 17:26:07 +03:00
|
|
|
"browserslist": [
|
2019-10-22 17:46:37 +03:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-10-17 17:26:07 +03:00
|
|
|
]
|
2018-04-24 16:01:58 +03:00
|
|
|
}
|