2014-03-28 19:11:56 +00:00
|
|
|
{
|
2018-08-30 20:22:27 +00:00
|
|
|
"name": "tasks",
|
|
|
|
"description": "Nextcloud - Tasks",
|
2020-03-08 15:26:23 +00:00
|
|
|
"version": "0.12.1",
|
2018-08-30 20:22:27 +00:00
|
|
|
"author": {
|
|
|
|
"name": "Raimund Schlüßler",
|
|
|
|
"email": "raimund.schluessler@mailbox.org"
|
|
|
|
},
|
|
|
|
"license": "AGPLv3",
|
|
|
|
"private": true,
|
|
|
|
"homepage": "https://github.com/nextcloud/tasks",
|
|
|
|
"scripts": {
|
2019-05-23 08:22:25 +00:00
|
|
|
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
|
|
|
|
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
|
|
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
2018-08-30 20:22:27 +00:00
|
|
|
"lint": "eslint --ext .js,.vue src tests",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src tests --fix",
|
2018-08-31 15:19:00 +00:00
|
|
|
"test": "jest --verbose",
|
2018-11-23 20:28:04 +00:00
|
|
|
"svg_sprite": "svg-sprite --config svg-sprite-color.json img/src/color/*.svg && svg-sprite --config svg-sprite-bw.json img/src/bw/*.svg"
|
2018-08-30 20:22:27 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git@github.com:nextcloud/tasks.git"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/nextcloud/tasks/issues",
|
|
|
|
"contributors": [],
|
|
|
|
"dependencies": {
|
2020-03-07 15:26:47 +00:00
|
|
|
"@nextcloud/axios": "^1.3.1",
|
2020-03-06 21:11:49 +00:00
|
|
|
"@nextcloud/vue": "1.4.0",
|
2020-01-25 20:23:19 +00:00
|
|
|
"@vue/test-utils": "^1.0.0-beta.31",
|
2019-09-08 11:59:27 +00:00
|
|
|
"cdav-library": "github:nextcloud/cdav-library",
|
2020-03-08 09:57:20 +00:00
|
|
|
"color-convert": "^2.0.1",
|
2018-11-17 10:58:40 +00:00
|
|
|
"ical.js": "~1.3.0",
|
2018-08-30 20:22:27 +00:00
|
|
|
"jstimezonedetect": "",
|
2019-08-15 07:55:25 +00:00
|
|
|
"linkify-it": "~2.2.0",
|
2020-03-07 15:26:47 +00:00
|
|
|
"linkifyjs": "~2.1.9",
|
2019-09-11 01:31:10 +00:00
|
|
|
"markdown-it": "~10.0.0",
|
2019-01-08 21:27:22 +00:00
|
|
|
"markdown-it-emoji": "~1.4.0",
|
2019-10-08 07:30:52 +00:00
|
|
|
"markdown-it-link-attributes": "~3.0.0",
|
2019-01-08 21:27:22 +00:00
|
|
|
"markdown-it-task-lists": "~2.1.1",
|
2020-03-08 09:57:20 +00:00
|
|
|
"md5": "^2.2.1",
|
2019-09-07 19:59:23 +00:00
|
|
|
"moment": "^2.24.0",
|
2020-01-05 02:16:39 +00:00
|
|
|
"p-limit": "^2.2.2",
|
2020-02-23 02:16:57 +00:00
|
|
|
"p-queue": "^6.3.0",
|
2020-03-07 15:26:47 +00:00
|
|
|
"uuid": "^7.0.2",
|
2020-01-26 02:15:37 +00:00
|
|
|
"v-tooltip": "2.0.3",
|
2019-12-15 13:58:43 +00:00
|
|
|
"vue": "^2.6.11",
|
2019-09-07 19:59:23 +00:00
|
|
|
"vue-click-outside": "^1.0.7",
|
2019-09-03 01:29:48 +00:00
|
|
|
"vue-clipboard2": "^0.3.1",
|
2020-03-01 02:19:08 +00:00
|
|
|
"vue-router": "3.1.6",
|
2019-10-03 01:29:54 +00:00
|
|
|
"vuedraggable": "^2.23.2",
|
2019-11-17 02:16:22 +00:00
|
|
|
"vuex": "^3.1.2",
|
2018-09-12 20:34:59 +00:00
|
|
|
"vuex-router-sync": "^5.0.0"
|
2018-08-30 20:22:27 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-07 15:26:47 +00:00
|
|
|
"@babel/core": "^7.8.7",
|
2020-01-19 11:05:48 +00:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
|
2020-01-19 02:16:31 +00:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2020-03-07 15:26:47 +00:00
|
|
|
"@babel/preset-env": "^7.8.7",
|
|
|
|
"@nextcloud/browserslist-config": "^1.0.0",
|
|
|
|
"@nextcloud/eslint-config": "^1.1.0",
|
|
|
|
"@nextcloud/eslint-plugin": "^1.1.0",
|
2018-11-02 21:20:56 +00:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2020-03-01 12:46:16 +00:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-01-26 02:16:31 +00:00
|
|
|
"babel-jest": "^25.1.0",
|
2019-05-13 01:21:24 +00:00
|
|
|
"babel-loader": "^8.0.6",
|
2020-01-12 03:25:20 +00:00
|
|
|
"css-loader": "^3.4.2",
|
2019-12-23 11:11:49 +00:00
|
|
|
"eslint": "^6.8.0",
|
2019-08-28 01:39:32 +00:00
|
|
|
"eslint-config-standard": "^14.1.0",
|
2018-08-30 20:22:27 +00:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
2019-12-08 02:16:53 +00:00
|
|
|
"eslint-loader": "^3.0.3",
|
2020-02-09 02:15:28 +00:00
|
|
|
"eslint-plugin-import": "^2.20.1",
|
2019-12-29 02:14:35 +00:00
|
|
|
"eslint-plugin-node": "^11.0.0",
|
2019-06-26 01:22:20 +00:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2019-08-20 01:28:24 +00:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-02-23 18:43:57 +00:00
|
|
|
"eslint-plugin-vue": "^6.2.1",
|
2020-02-23 20:36:45 +00:00
|
|
|
"file-loader": "^5.1.0",
|
2020-01-26 07:28:10 +00:00
|
|
|
"jest": "^25.1.0",
|
2020-02-23 02:17:56 +00:00
|
|
|
"jest-environment-jsdom-sixteen": "^1.0.2",
|
2018-08-30 20:22:27 +00:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
2019-05-29 19:07:54 +00:00
|
|
|
"mockdate": "2.0.5",
|
|
|
|
"moment": "^2.24.0",
|
2020-01-19 02:23:26 +00:00
|
|
|
"node-sass": "^4.13.1",
|
2019-11-24 02:23:04 +00:00
|
|
|
"prettier-eslint": "^9.0.1",
|
2019-11-27 14:53:14 +00:00
|
|
|
"raw-loader": "^4.0.0",
|
2020-01-19 11:06:57 +00:00
|
|
|
"sass-loader": "^8.0.2",
|
2020-02-23 20:49:37 +00:00
|
|
|
"stylelint": "^13.2.0",
|
2020-02-02 02:20:37 +00:00
|
|
|
"stylelint-config-recommended-scss": "^4.2.0",
|
2020-02-02 07:54:20 +00:00
|
|
|
"stylelint-scss": "^3.14.2",
|
2020-02-09 15:48:14 +00:00
|
|
|
"stylelint-webpack-plugin": "^1.2.3",
|
2018-11-02 21:38:28 +00:00
|
|
|
"svg-sprite": "^1.5.0",
|
2020-02-16 02:17:04 +00:00
|
|
|
"terser-webpack-plugin": "^2.3.5",
|
2019-09-08 11:59:27 +00:00
|
|
|
"vue-jest": "^3.0.5",
|
2020-02-16 06:51:59 +00:00
|
|
|
"vue-loader": "^15.9.0",
|
2019-12-15 13:58:43 +00:00
|
|
|
"vue-template-compiler": "^2.6.11",
|
2020-03-07 15:26:47 +00:00
|
|
|
"webpack": "^4.42.0",
|
2020-02-16 06:46:41 +00:00
|
|
|
"webpack-cli": "^3.3.11",
|
2019-08-28 01:40:09 +00:00
|
|
|
"webpack-merge": "^4.2.2"
|
2018-08-30 20:22:27 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2018-11-03 08:28:09 +00:00
|
|
|
"node": ">=10.0.0"
|
2018-08-30 20:22:27 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"vue"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2020-02-02 19:51:03 +00:00
|
|
|
"^@/(.*)$": "<rootDir>/src/$1",
|
|
|
|
"^Assets/(.*)$": "<rootDir>/src/assets/$1",
|
|
|
|
"^Components/(.*)$": "<rootDir>/src/components/$1",
|
|
|
|
"^Directives/(.*)$": "<rootDir>/src/directives/$1",
|
|
|
|
"^Fonts/(.*)$": "<rootDir>/src/fonts/$1",
|
|
|
|
"^Mixins/(.*)$": "<rootDir>/src/mixins/$1",
|
|
|
|
"^Models/(.*)$": "<rootDir>/src/models/$1",
|
|
|
|
"^Store/(.*)$": "<rootDir>/src/store/$1",
|
|
|
|
"^Utils/(.*)$": "<rootDir>/src/utils/$1"
|
2018-08-30 20:22:27 +00:00
|
|
|
},
|
2020-01-31 14:21:59 +00:00
|
|
|
"testEnvironment": "jest-environment-jsdom-sixteen",
|
2018-08-30 20:22:27 +00:00
|
|
|
"transform": {
|
|
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
|
|
|
|
},
|
|
|
|
"snapshotSerializers": [
|
|
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
|
|
],
|
2019-10-28 08:57:15 +00:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"./tests/javascript/unit/setup.js"
|
|
|
|
],
|
2019-06-12 19:27:23 +00:00
|
|
|
"coverageDirectory": "./coverage/",
|
2018-08-30 20:22:27 +00:00
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"<rootDir>/src/**/*.{js,vue}",
|
2018-11-17 10:58:40 +00:00
|
|
|
"!**/node_modules/**"
|
2018-08-30 20:22:27 +00:00
|
|
|
],
|
|
|
|
"coverageReporters": [
|
|
|
|
"json",
|
|
|
|
"text",
|
2019-06-12 19:27:23 +00:00
|
|
|
"html",
|
|
|
|
"lcov",
|
|
|
|
"clover"
|
2018-08-30 20:22:27 +00:00
|
|
|
]
|
2019-09-02 20:03:37 +00:00
|
|
|
},
|
|
|
|
"browserslist": [
|
2020-03-07 15:26:47 +00:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-09-02 20:03:37 +00:00
|
|
|
]
|
2014-03-28 19:11:56 +00:00
|
|
|
}
|