2018-04-24 16:01:58 +03:00
|
|
|
{
|
2018-09-11 14:29:37 +03:00
|
|
|
"name": "nextcloud-vue",
|
2018-11-29 19:03:45 +03:00
|
|
|
"version": "0.4.6",
|
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",
|
|
|
|
"build": "webpack --progress --hide-modules --config webpack.prod.js",
|
2018-09-27 12:33:51 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2018-09-11 10:30:56 +03:00
|
|
|
"stylelint": "stylelint src",
|
|
|
|
"stylelint:fix": "stylelint src --fix",
|
2018-08-17 17:57:42 +03:00
|
|
|
"test": "jest",
|
|
|
|
"test:coverage": "jest --coverage"
|
|
|
|
},
|
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": {
|
2018-09-13 13:47:24 +03:00
|
|
|
"@babel/polyfill": "^7.0.0",
|
2018-11-30 13:29:31 +03:00
|
|
|
"base64-inline-loader": "^1.1.1",
|
2018-10-23 22:24:41 +03:00
|
|
|
"md5": "^2.2.1",
|
|
|
|
"nextcloud-axios": "^0.1.2",
|
2018-08-17 17:57:42 +03:00
|
|
|
"v-tooltip": "^2.0.0-rc.33",
|
|
|
|
"vue": "^2.5.16",
|
2018-09-10 19:22:17 +03:00
|
|
|
"vue-click-outside": "^1.0.7",
|
2018-09-25 10:21:08 +03:00
|
|
|
"vue-multiselect": "^2.1.0",
|
2018-10-26 10:58:38 +03:00
|
|
|
"vue2-datepicker": "^2.6.1"
|
2018-08-17 17:57:42 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-09-13 13:47:24 +03:00
|
|
|
"@babel/core": "^7.0.1",
|
2018-09-10 19:22:17 +03:00
|
|
|
"@babel/preset-env": "^7.0.0",
|
|
|
|
"@vue/test-utils": "^1.0.0-beta.25",
|
2018-09-26 23:27:41 +03:00
|
|
|
"babel-eslint": "^10.0.0",
|
2018-09-10 19:22:17 +03:00
|
|
|
"babel-jest": "^23.6.0",
|
|
|
|
"babel-loader": "^8.0.2",
|
2018-12-07 14:49:58 +03:00
|
|
|
"css-loader": "^2.0.0",
|
2018-10-26 10:58:38 +03:00
|
|
|
"eslint": "^5.7.0",
|
2018-09-26 23:28:11 +03:00
|
|
|
"eslint-config-standard": "^12.0.0",
|
2018-08-17 17:57:42 +03:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
|
|
|
"eslint-loader": "^2.0.0",
|
|
|
|
"eslint-plugin-import": "^2.13.0",
|
2018-10-28 01:39:20 +03:00
|
|
|
"eslint-plugin-node": "^8.0.0",
|
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",
|
2018-10-26 10:58:38 +03:00
|
|
|
"eslint-plugin-vue": "^5.0.0-beta.3",
|
2018-09-10 19:22:17 +03:00
|
|
|
"jest": "^23.6.0",
|
2018-08-17 17:57:42 +03:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
2018-10-26 10:58:38 +03:00
|
|
|
"node-sass": "^4.9.4",
|
2018-08-17 17:57:42 +03:00
|
|
|
"prettier-eslint": "^8.8.2",
|
|
|
|
"raw-loader": "^0.5.1",
|
|
|
|
"sass-loader": "^7.0.3",
|
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",
|
2018-10-26 10:58:38 +03:00
|
|
|
"stylelint-scss": "^3.3.2",
|
2018-08-17 17:57:42 +03:00
|
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
2018-10-14 19:51:09 +03:00
|
|
|
"vue-jest": "^3.0.0",
|
2018-09-13 13:47:24 +03:00
|
|
|
"vue-loader": "^15.4.2",
|
2018-12-08 13:16:24 +03:00
|
|
|
"vue-template-compiler": "^2.5.18",
|
2018-10-26 10:58:38 +03:00
|
|
|
"webpack": "^4.23.1",
|
|
|
|
"webpack-cli": "^3.1.2",
|
2018-08-17 17:57:42 +03:00
|
|
|
"webpack-merge": "^4.1.2"
|
|
|
|
},
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
2018-04-24 16:01:58 +03:00
|
|
|
}
|