зеркало из https://github.com/nextcloud/text.git
108 строки
3.0 KiB
JSON
108 строки
3.0 KiB
JSON
{
|
|
"name": "text",
|
|
"description": "Collaborative document editing",
|
|
"version": "3.5.0",
|
|
"authors": [
|
|
{
|
|
"name": "Julius Härtl",
|
|
"email": "jus@bitgrid.net",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"license": "agpl",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development webpack --config webpack.js",
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
|
|
"build": "NODE_ENV=production webpack --progress --config webpack.js",
|
|
"lint": "eslint --ext .js,.vue src",
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
|
|
"test": "NODE_ENV=test jest --passWithNoTests src/",
|
|
"test:coverage": "NODE_ENV=test jest --coverage src/"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"dependencies": {
|
|
"@nextcloud/auth": "^1.3.0",
|
|
"@nextcloud/axios": "^1.7.0",
|
|
"@nextcloud/browser-storage": "^0.1.1",
|
|
"@nextcloud/event-bus": "^2.1.0",
|
|
"@nextcloud/initial-state": "^1.2.0",
|
|
"@nextcloud/l10n": "^1.4.1",
|
|
"@nextcloud/moment": "^1.1.1",
|
|
"@nextcloud/router": "^2.0.0",
|
|
"@nextcloud/vue": "^4.2.0",
|
|
"core-js": "^3.18.3",
|
|
"entities": "^3.0.1",
|
|
"escape-html": "^1.0.3",
|
|
"highlight.js": "^10.7.2",
|
|
"markdown-it": "^12.2.0",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"prosemirror-collab": "^1.2.2",
|
|
"prosemirror-inputrules": "^1.1.3",
|
|
"prosemirror-markdown": "^1.6.0",
|
|
"prosemirror-model": "^1.15.0",
|
|
"prosemirror-schema-list": "^1.1.6",
|
|
"prosemirror-state": "^1.3.4",
|
|
"prosemirror-transform": "^1.3.3",
|
|
"prosemirror-utils": "^1.0.0-0",
|
|
"prosemirror-view": "^1.21.0",
|
|
"proxy-polyfill": "^0.3.2",
|
|
"tiptap": "^1.32.2",
|
|
"tiptap-commands": "^1.17.1",
|
|
"tiptap-extensions": "^1.35.2",
|
|
"tiptap-utils": "^1.13.1",
|
|
"vue": "^2.6.14",
|
|
"vue-click-outside": "^1.0.7",
|
|
"vuex": "^3.6.2"
|
|
},
|
|
"engines": {
|
|
"node": "^14.0.0",
|
|
"npm": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/browserify-preprocessor": "^3.0.1",
|
|
"@nextcloud/babel-config": "^1.0.0",
|
|
"@nextcloud/browserslist-config": "^2.2.0",
|
|
"@nextcloud/eslint-config": "^6.1.0",
|
|
"@nextcloud/stylelint-config": "^1.0.0-beta.0",
|
|
"@nextcloud/webpack-vue-config": "^4.1.4",
|
|
"@vue/test-utils": "^1.2.2",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"cypress": "^9.0.0",
|
|
"jest": "^27.3.1",
|
|
"jest-environment-jsdom": "^27.3.1",
|
|
"jest-serializer-vue": "^2.0.2",
|
|
"regenerator-runtime": "^0.13.9",
|
|
"vue-jest": "^3.0.7"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"testEnvironment": "jest-environment-jsdom",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"vue"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/src/tests/fixtures/",
|
|
"<rootDir>/build"
|
|
],
|
|
"transform": {
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
|
|
},
|
|
"snapshotSerializers": [
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/src/tests/setup.js"
|
|
]
|
|
}
|
|
}
|