134 строки
3.8 KiB
JSON
134 строки
3.8 KiB
JSON
{
|
|
"name": "tasks",
|
|
"description": "Nextcloud - Tasks",
|
|
"version": "0.14.4",
|
|
"author": {
|
|
"name": "Raimund Schlüßler",
|
|
"email": "raimund.schluessler@mailbox.org"
|
|
},
|
|
"license": "AGPLv3",
|
|
"private": true,
|
|
"homepage": "https://github.com/nextcloud/tasks",
|
|
"scripts": {
|
|
"build": "webpack --node-env production --progress",
|
|
"dev": "webpack --node-env development --progress",
|
|
"watch": "webpack --node-env development --progress --watch",
|
|
"lint": "eslint --ext .js,.vue src tests",
|
|
"lint:fix": "eslint --ext .js,.vue src tests --fix",
|
|
"stylelint": "stylelint 'css/**/*.scss'",
|
|
"stylelint:fix": "stylelint 'css/**/*.scss' --fix",
|
|
"test": "jest --verbose"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:nextcloud/tasks.git"
|
|
},
|
|
"bugs": "https://github.com/nextcloud/tasks/issues",
|
|
"contributors": [],
|
|
"dependencies": {
|
|
"@nextcloud/auth": "^2.0.0",
|
|
"@nextcloud/axios": "^2.0.0",
|
|
"@nextcloud/calendar-js": "^3.1.0",
|
|
"@nextcloud/cdav-library": "1.1.0",
|
|
"@nextcloud/dialogs": "^3.2.0",
|
|
"@nextcloud/event-bus": "^3.0.0",
|
|
"@nextcloud/initial-state": "1.2.1",
|
|
"@nextcloud/l10n": "^1.6.0",
|
|
"@nextcloud/logger": "^2.2.1",
|
|
"@nextcloud/moment": "^1.2.1",
|
|
"@nextcloud/router": "^2.0.0",
|
|
"@nextcloud/vue": "^6.0.0-beta.4",
|
|
"color-convert": "^2.0.1",
|
|
"debounce": "^1.2.1",
|
|
"ical.js": "^1.5.0",
|
|
"jstimezonedetect": "",
|
|
"linkify-it": "^4.0.1",
|
|
"markdown-it": "^13.0.1",
|
|
"markdown-it-emoji": "^2.0.2",
|
|
"markdown-it-link-attributes": "^4.0.1",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"md5": "^2.3.0",
|
|
"p-limit": "^4.0.0",
|
|
"p-queue": "^6.6.2",
|
|
"uuid": "^8.3.2",
|
|
"v-click-outside": "^3.2.0",
|
|
"vue": "^2.7.9",
|
|
"vue-clipboard2": "^0.3.3",
|
|
"vue-material-design-icons": "^5.1.2",
|
|
"vue-router": "^3.5.4",
|
|
"vuedraggable": "^2.24.3",
|
|
"vuex": "^3.6.2",
|
|
"vuex-router-sync": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/babel-config": "^1.0.0-beta.1",
|
|
"@nextcloud/browserslist-config": "^2.3.0",
|
|
"@nextcloud/eslint-config": "^8.0.0",
|
|
"@nextcloud/stylelint-config": "^2.2.0",
|
|
"@nextcloud/webpack-vue-config": "^5.3.0",
|
|
"@vue/test-utils": "^1.3.0",
|
|
"@vue/vue2-jest": "^28.1.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-jest": "^28.1.2",
|
|
"jest": "^28.1.3",
|
|
"jest-environment-jsdom": "^28.1.3",
|
|
"jest-serializer-vue": "^2.0.2",
|
|
"jest-transform-stub": "^2.0.0",
|
|
"mockdate": "^3.0.5",
|
|
"regenerator-runtime": "^0.13.9"
|
|
},
|
|
"engines": {
|
|
"node": "^16.0.0",
|
|
"npm": "^7.0.0 || ^8.0.0"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"vue"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<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",
|
|
"^Views/(.*)$": "<rootDir>/src/views/$1"
|
|
},
|
|
"testEnvironment": "jsdom",
|
|
"transform": {
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
"^.+\\.vue$": "<rootDir>/node_modules/@vue/vue2-jest",
|
|
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
|
|
},
|
|
"transformIgnorePatterns": [
|
|
"/node_modules/(?!(.*vue-material-design-icons)|(uuid))"
|
|
],
|
|
"snapshotSerializers": [
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"./tests/javascript/unit/setup.js"
|
|
],
|
|
"coverageDirectory": "./coverage/",
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"<rootDir>/src/**/*.{js,vue}",
|
|
"!**/node_modules/**"
|
|
],
|
|
"coverageReporters": [
|
|
"json",
|
|
"text",
|
|
"html",
|
|
"lcov",
|
|
"clover"
|
|
]
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
]
|
|
}
|