2018-04-24 16:01:58 +03:00
|
|
|
{
|
2019-10-16 01:43:59 +03:00
|
|
|
"name": "@nextcloud/vue",
|
2023-03-15 13:11:18 +03:00
|
|
|
"version": "7.8.1",
|
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-11-21 11:03:34 +03:00
|
|
|
"watch:module": "LIBRARY_TARGET=module 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",
|
2023-01-04 10:01:07 +03:00
|
|
|
"cypress": "cypress run --component",
|
|
|
|
"cypress:gui": "cypress open --component",
|
|
|
|
"cypress:update-snapshots": "cypress run --component --spec cypress/visual/**/*.cy.js --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": {
|
2023-01-17 04:44:24 +03:00
|
|
|
"@floating-ui/dom": "^1.1.0",
|
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",
|
2022-10-27 09:04:36 +03:00
|
|
|
"@nextcloud/browser-storage": "^0.2.0",
|
2022-12-29 10:01:53 +03:00
|
|
|
"@nextcloud/calendar-js": "^5.0.3",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@nextcloud/capabilities": "^1.0.4",
|
2023-02-13 23:18:29 +03:00
|
|
|
"@nextcloud/dialogs": "^4.0.0",
|
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",
|
2023-01-31 19:20:14 +03:00
|
|
|
"@nextcloud/l10n": "^2.0.1",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@nextcloud/logger": "^2.2.1",
|
2021-04-08 06:02:42 +03:00
|
|
|
"@nextcloud/router": "^2.0.0",
|
2023-02-01 04:29:32 +03:00
|
|
|
"@nextcloud/vue-select": "^3.21.2",
|
2022-11-18 04:52:45 +03:00
|
|
|
"@skjnldsv/sanitize-svg": "^1.0.2",
|
2023-03-15 20:29:11 +03:00
|
|
|
"@vueuse/components": "^9.13.0",
|
2023-03-01 15:16:28 +03:00
|
|
|
"clone": "^2.1.2",
|
2021-03-10 07:09:56 +03:00
|
|
|
"debounce": "1.2.1",
|
2022-11-15 16:05:10 +03:00
|
|
|
"emoji-mart-vue-fast": "^12.0.1",
|
2020-10-06 13:16:26 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2022-11-17 15:57:53 +03:00
|
|
|
"floating-vue": "^1.0.0-beta.19",
|
2022-11-15 11:48:44 +03:00
|
|
|
"focus-trap": "^7.1.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",
|
2023-02-14 21:34:34 +03:00
|
|
|
"node-polyfill-webpack-plugin": "^2.0.1",
|
2023-03-01 15:16:28 +03:00
|
|
|
"rehype-react": "^7.1.2",
|
|
|
|
"remark-breaks": "^3.0.2",
|
|
|
|
"remark-external-links": "^9.0.1",
|
|
|
|
"remark-parse": "^10.0.1",
|
|
|
|
"remark-rehype": "^10.1.0",
|
2022-08-08 18:01:11 +03:00
|
|
|
"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",
|
2023-03-01 15:16:28 +03:00
|
|
|
"unified": "^10.1.2",
|
|
|
|
"unist-builder": "^3.0.1",
|
|
|
|
"unist-util-visit": "^4.1.2",
|
2023-01-04 10:01:07 +03:00
|
|
|
"vue": "^2.7.14",
|
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": {
|
2023-01-04 10:01:07 +03:00
|
|
|
"@cypress/vue2": "^2.0.1",
|
2022-08-08 18:01:11 +03:00
|
|
|
"@fontsource/roboto": "^4.5.8",
|
2022-11-18 05:00:54 +03:00
|
|
|
"@mdi/svg": "^7.0.96",
|
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",
|
2023-01-31 17:56:28 +03:00
|
|
|
"@nextcloud/eslint-config": "^8.2.1",
|
2022-10-14 20:52:58 +03:00
|
|
|
"@nextcloud/stylelint-config": "^2.3.0",
|
2023-01-04 10:01:07 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "github:nextcloud/webpack-vue-config#master",
|
2022-08-08 22:11:46 +03:00
|
|
|
"@vue/test-utils": "^1.3.0",
|
2023-01-04 10:01:07 +03:00
|
|
|
"@vue/tsconfig": "^0.1.3",
|
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",
|
2023-01-04 10:01:07 +03:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
|
|
|
"cypress": "^12.3.0",
|
2023-02-07 10:04:47 +03:00
|
|
|
"cypress-visual-regression": "^2.1.1",
|
2020-08-23 23:18:36 +03:00
|
|
|
"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",
|
2023-02-28 10:57:22 +03:00
|
|
|
"glob": "^9.0.1",
|
2022-08-30 22:02:17 +03:00
|
|
|
"jest": "^29.0.1",
|
2023-03-07 10:58:11 +03:00
|
|
|
"jest-environment-jsdom": "29.5.0",
|
2022-11-22 10:02:04 +03:00
|
|
|
"jest-serializer-vue": "^3.1.0",
|
2020-01-31 00:05:54 +03:00
|
|
|
"jest-transform-stub": "^2.0.0",
|
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
|
|
|
"url-loader": "^4.1.1",
|
|
|
|
"vue-eslint-parser": "^9.0.3",
|
2023-02-22 10:16:03 +03:00
|
|
|
"vue-styleguidist": "~4.58.0",
|
2023-01-04 10:01:07 +03:00
|
|
|
"vue-template-compiler": "^2.7.14",
|
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": [
|
2023-03-02 23:18:49 +03:00
|
|
|
"/node_modules/(?!(vue-material-design-icons)|(unist*)|(unified)|(bail)|(remark*)|(is-*)|(trough)|(vfile)|(mdast*)|(micromark)|(decode-named-character-reference)|(trim-lines)|(rehype*)|(hast-*)|(property-information)|(space-separated-tokens)|(comma-separated-tokens)|(web-namespaces))"
|
2021-04-14 09:06:49 +03:00
|
|
|
],
|
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
|
|
|
}
|