зеркало из https://github.com/nextcloud/text.git
113 строки
3.2 KiB
JSON
113 строки
3.2 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": {
|
|
"highlight.js": "^9.15.9",
|
|
"nextcloud-axios": "^0.2.0",
|
|
"nextcloud-server": "^0.15.10",
|
|
"nextcloud-vue": "^0.12.0",
|
|
"prosemirror-markdown": "^1.3.1",
|
|
"prosemirror-view": "^1.9.13",
|
|
"tiptap": "^1.24.0",
|
|
"tiptap-extensions": "^1.26.0",
|
|
"v-tooltip": "^2.0.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.5.5",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
"@babel/plugin-transform-runtime": "^7.5.5",
|
|
"@babel/polyfill": "^7.4.4",
|
|
"@babel/preset-env": "^7.5.5",
|
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
"acorn": "^6.2.1",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.2",
|
|
"babel-jest": "^24.8.0",
|
|
"babel-loader": "^8.0.6",
|
|
"browserslist-config-nextcloud": "0.0.1",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"css-loader": "^3.2.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-friendly-formatter": "^4.0.1",
|
|
"eslint-loader": "^2.2.1",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-node": "^9.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"eslint-plugin-vue": "^5.2.3",
|
|
"file-loader": "^4.2.0",
|
|
"jest": "^24.8.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.1.0",
|
|
"stylelint": "^10.1.0",
|
|
"stylelint-config-recommended-scss": "^3.3.0",
|
|
"stylelint-scss": "^3.9.3",
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
|
"url-loader": "^2.1.0",
|
|
"vue-jest": "^3.0.4",
|
|
"vue-loader": "^15.7.1",
|
|
"vue-style-loader": "^4.1.1",
|
|
"vue-template-compiler": "^2.6.10",
|
|
"webpack": "^4.39.1",
|
|
"webpack-cli": "^3.3.6",
|
|
"webpack-merge": "^4.2.1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|