зеркало из https://github.com/nextcloud/text.git
120 строки
3.4 KiB
JSON
120 строки
3.4 KiB
JSON
{
|
|
"name": "text",
|
|
"description": "Collaborative document editing",
|
|
"version": "1.0.1",
|
|
"authors": [
|
|
{
|
|
"name": "Julius Härtl",
|
|
"email": "jus@bitgrid.net",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"license": "agpl",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
|
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.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",
|
|
"test:coverage": "NODE_ENV=test jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@nextcloud/axios": "^0.4.2",
|
|
"escape-html": "^1.0.3",
|
|
"highlight.js": "^9.15.10",
|
|
"markdown-it": "^8.4.2",
|
|
"nextcloud-axios": "^0.2.1",
|
|
"nextcloud-server": "^0.15.10",
|
|
"nextcloud-vue": "^0.12.7",
|
|
"prosemirror-collab": "^1.1.2",
|
|
"prosemirror-markdown": "^1.3.1",
|
|
"prosemirror-view": "^1.12.0",
|
|
"tiptap": "^1.26.4",
|
|
"tiptap-commands": "^1.12.3",
|
|
"tiptap-extensions": "^1.28.4",
|
|
"tiptap-utils": "^1.8.2",
|
|
"vue": "^2.6.10",
|
|
"vue-click-outside": "^1.0.7"
|
|
},
|
|
"browserslist": [
|
|
"extends browserslist-config-nextcloud"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.4",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
"@babel/polyfill": "^7.6.0",
|
|
"@babel/preset-env": "^7.6.3",
|
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
"acorn": "^7.1.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-jest": "^24.9.0",
|
|
"babel-loader": "^8.0.6",
|
|
"browserslist-config-nextcloud": "0.1.0",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"css-loader": "^3.2.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-nextcloud": "0.0.6",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-friendly-formatter": "^4.0.1",
|
|
"eslint-loader": "^3.0.2",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-nextcloud": "^0.3.0",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"eslint-plugin-vue": "^5.2.3",
|
|
"file-loader": "^4.2.0",
|
|
"jest": "^24.9.0",
|
|
"jest-environment-jsdom-fourteen": "^0.1.0",
|
|
"jest-serializer-vue": "^2.0.2",
|
|
"node-sass": "^4.12.0",
|
|
"prettier-eslint": "^9.0.0",
|
|
"raw-loader": "^3.1.0",
|
|
"sass-loader": "^7.3.1",
|
|
"stylelint": "^11.1.1",
|
|
"stylelint-config-recommended-scss": "^4.0.0",
|
|
"stylelint-scss": "^3.12.0",
|
|
"stylelint-webpack-plugin": "^1.0.2",
|
|
"url-loader": "^2.2.0",
|
|
"vue-jest": "^3.0.5",
|
|
"vue-loader": "^15.7.1",
|
|
"vue-style-loader": "^4.1.1",
|
|
"vue-template-compiler": "^2.6.10",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.9",
|
|
"webpack-merge": "^4.2.2"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"testEnvironment": "jest-environment-jsdom-fourteen",
|
|
"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"
|
|
],
|
|
"globalSetup": "<rootDir>/src/tests/setup.js"
|
|
}
|
|
}
|