2018-04-24 16:01:58 +03:00
|
|
|
{
|
2019-10-16 01:43:59 +03:00
|
|
|
"name": "@nextcloud/vue",
|
2020-03-19 12:20:22 +03:00
|
|
|
"version": "1.4.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": {
|
|
|
|
"dev": "webpack --config webpack.dev.js",
|
|
|
|
"watch": "webpack --progress --watch --config webpack.dev.js",
|
2019-02-21 18:06:55 +03:00
|
|
|
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
|
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",
|
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",
|
|
|
|
"styleguide:build": "vue-styleguidist build"
|
2018-08-17 17:57:42 +03:00
|
|
|
},
|
2018-09-13 13:47:24 +03:00
|
|
|
"main": "dist/ncvuecomponents.js",
|
2018-09-13 13:50:50 +03:00
|
|
|
"files": [
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2018-08-17 17:57:42 +03:00
|
|
|
"dependencies": {
|
2019-12-22 05:20:15 +03:00
|
|
|
"@nextcloud/axios": "^1.1.0",
|
2020-02-13 14:45:24 +03:00
|
|
|
"@nextcloud/l10n": "^1.1.0",
|
2019-12-22 13:06:22 +03:00
|
|
|
"@nextcloud/router": "^1.0.0",
|
2019-11-27 14:45:08 +03:00
|
|
|
"core-js": "^3.4.4",
|
2019-08-02 18:05:15 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2019-02-25 11:23:27 +03:00
|
|
|
"hammerjs": "^2.0.8",
|
2018-10-23 22:24:41 +03:00
|
|
|
"md5": "^2.2.1",
|
2019-11-27 18:17:40 +03:00
|
|
|
"regenerator-runtime": "^0.13.3",
|
2019-11-17 05:17:30 +03:00
|
|
|
"v-click-outside": "^3.0.0",
|
2018-08-17 17:57:42 +03:00
|
|
|
"v-tooltip": "^2.0.0-rc.33",
|
2019-02-24 19:39:36 +03:00
|
|
|
"vue": "^2.6.7",
|
2019-09-03 15:01:03 +03:00
|
|
|
"vue-color": "^2.7.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"vue-multiselect": "^2.1.3",
|
2019-03-06 13:40:27 +03:00
|
|
|
"vue-visible": "^1.0.2",
|
2020-02-18 17:50:10 +03:00
|
|
|
"vue2-datepicker": "^3.3.1"
|
2018-08-17 17:57:42 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-02-24 19:39:36 +03:00
|
|
|
"@babel/core": "^7.3.3",
|
|
|
|
"@babel/preset-env": "^7.3.1",
|
2019-10-22 17:46:37 +03:00
|
|
|
"@nextcloud/browserslist-config": "^1.0.0",
|
2020-01-31 00:05:54 +03:00
|
|
|
"@vue/test-utils": "^1.0.0-beta.31",
|
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"babel-eslint": "^10.0.1",
|
2020-01-31 00:05:54 +03:00
|
|
|
"babel-jest": "^25.1.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"babel-loader": "^8.0.5",
|
2019-06-14 00:11:12 +03:00
|
|
|
"css-loader": "^3.0.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"eslint": "^5.14.1",
|
2018-09-26 23:28:11 +03:00
|
|
|
"eslint-config-standard": "^12.0.0",
|
2019-08-25 04:16:59 +03:00
|
|
|
"eslint-loader": "^3.0.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"eslint-plugin-import": "^2.16.0",
|
2019-08-28 21:38:39 +03:00
|
|
|
"eslint-plugin-nextcloud": "^0.3.0",
|
2019-05-05 04:13:15 +03:00
|
|
|
"eslint-plugin-node": "^9.0.1",
|
2018-09-26 23:26:23 +03:00
|
|
|
"eslint-plugin-promise": "^4.0.1",
|
2018-09-25 16:50:18 +03:00
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
2019-11-17 05:13:41 +03:00
|
|
|
"eslint-plugin-vue": "^6.0.1",
|
2019-11-27 18:17:40 +03:00
|
|
|
"file-loader": "^5.0.2",
|
2020-02-13 14:45:24 +03:00
|
|
|
"gettext-extractor": "^3.5.2",
|
|
|
|
"gettext-parser": "^4.0.2",
|
2019-02-24 19:39:36 +03:00
|
|
|
"iconfont-plugin-webpack": "^1.1.4",
|
2020-01-31 00:05:54 +03:00
|
|
|
"jest": "^25.1.0",
|
|
|
|
"jest-environment-jsdom-sixteen": "^1.0.0",
|
|
|
|
"jest-serializer-vue": "^2.0.2",
|
|
|
|
"jest-transform-stub": "^2.0.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"node-sass": "^4.11.0",
|
2019-06-23 04:15:21 +03:00
|
|
|
"prettier-eslint": "^9.0.0",
|
2019-12-01 05:17:47 +03:00
|
|
|
"raw-loader": "^4.0.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"resolve-url-loader": "^3.0.1",
|
2020-01-26 05:14:31 +03:00
|
|
|
"sass-loader": "^8.0.2",
|
2018-10-26 10:58:38 +03:00
|
|
|
"stylelint": "^8.0.0",
|
2018-08-17 17:57:42 +03:00
|
|
|
"stylelint-config-recommended-scss": "^3.2.0",
|
2019-02-24 19:39:36 +03:00
|
|
|
"stylelint-scss": "^3.5.4",
|
2018-08-17 17:57:42 +03:00
|
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
2019-12-01 05:14:44 +03:00
|
|
|
"url-loader": "^3.0.0",
|
2020-01-31 00:05:54 +03:00
|
|
|
"vue-jest": "^3.0.5",
|
2019-02-24 19:39:36 +03:00
|
|
|
"vue-loader": "^15.6.4",
|
2020-02-03 14:59:06 +03:00
|
|
|
"vue-styleguidist": "^4.7.6",
|
2019-02-24 19:39:36 +03:00
|
|
|
"vue-template-compiler": "^2.6.7",
|
|
|
|
"webpack": "^4.29.5",
|
2019-10-22 16:55:57 +03:00
|
|
|
"webpack-cli": "^3.3.9",
|
2019-10-23 10:08:21 +03:00
|
|
|
"webpack-merge": "^4.2.1",
|
|
|
|
"webpack-node-externals": "^1.7.2"
|
2019-10-17 17:26:07 +03:00
|
|
|
},
|
2020-01-31 00:05:54 +03:00
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"vue"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^@/(.*)$": "<rootDir>/src/$1",
|
|
|
|
"^Assets/(.*)$": "<rootDir>/src/assets/$1",
|
|
|
|
"^Components/(.*)$": "<rootDir>/src/components/$1",
|
|
|
|
"^Directives/(.*)$": "<rootDir>/src/directives/$1",
|
|
|
|
"^Mixins/(.*)$": "<rootDir>/src/mixins/$1",
|
|
|
|
"^Utils/(.*)$": "<rootDir>/src/utils/$1",
|
|
|
|
"^Fonts/(.*)$": "<rootDir>/src/fonts/$1"
|
|
|
|
},
|
|
|
|
"testEnvironment": "jest-environment-jsdom-sixteen",
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
|
|
|
|
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
|
|
|
|
},
|
|
|
|
"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
|
|
|
}
|