2018-04-24 16:01:58 +03:00
|
|
|
{
|
|
|
|
"name": "vue-components",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Nextcloud vue components",
|
2018-08-17 17:57:42 +03:00
|
|
|
"keywords": [
|
|
|
|
"vuejs",
|
|
|
|
"nextcloud",
|
|
|
|
"components"
|
|
|
|
],
|
2018-04-24 16:01:58 +03:00
|
|
|
"repository": "https://github.com/nextcloud/vue-components",
|
|
|
|
"homepage": "https://github.com/nextcloud/vue-components",
|
|
|
|
"bugs": "https://github.com/nextcloud/vue-components/issues",
|
|
|
|
"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",
|
|
|
|
"lint": "eslint --ext .js,.vue src tests",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src tests --fix",
|
|
|
|
"test": "jest",
|
|
|
|
"test:coverage": "jest --coverage"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"v-tooltip": "^2.0.0-rc.33",
|
|
|
|
"vue": "^2.5.16",
|
|
|
|
"vue-click-outside": "^1.0.7"
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"not ie <= 11"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@vue/test-utils": "^1.0.0-beta.20",
|
|
|
|
"babel-core": "^6.26.3",
|
|
|
|
"babel-eslint": "^8.2.5",
|
|
|
|
"babel-jest": "^23.4.0",
|
|
|
|
"babel-loader": "^7.1.4",
|
|
|
|
"babel-preset-env": "^1.7.0",
|
|
|
|
"css-loader": "^0.28.11",
|
|
|
|
"eslint": "^4.19.1",
|
|
|
|
"eslint-config-standard": "^11.0.0",
|
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
|
|
|
"eslint-loader": "^2.0.0",
|
|
|
|
"eslint-plugin-import": "^2.13.0",
|
|
|
|
"eslint-plugin-node": "^6.0.1",
|
|
|
|
"eslint-plugin-promise": "^3.8.0",
|
|
|
|
"eslint-plugin-standard": "^3.1.0",
|
|
|
|
"eslint-plugin-vue": "^4.5.0",
|
|
|
|
"jest": "^23.4.0",
|
|
|
|
"jest-serializer-vue": "^2.0.2",
|
|
|
|
"node-sass": "^4.9.0",
|
|
|
|
"prettier-eslint": "^8.8.2",
|
|
|
|
"raw-loader": "^0.5.1",
|
|
|
|
"sass-loader": "^7.0.3",
|
|
|
|
"stylelint": "^8.4.0",
|
|
|
|
"stylelint-config-recommended-scss": "^3.2.0",
|
|
|
|
"stylelint-scss": "^3.1.3",
|
|
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
|
|
|
"vue-jest": "^2.6.0",
|
|
|
|
"vue-loader": "^15.2.4",
|
|
|
|
"vue-template-compiler": "^2.5.16",
|
|
|
|
"webpack": "^4.16.2",
|
|
|
|
"webpack-cli": "^3.0.4",
|
|
|
|
"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
|
|
|
}
|