Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/nextcloud/activity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc871f5b82e079a90124af477054d837f358ba1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
  "name": "activity",
  "description": "This application enables users to view a log of activities about them or about files.",
  "version": "2.18.0",
  "author": "Julius Härtl <jus@bitgrid.net",
  "contributors": [],
  "bugs": {
    "url": "https://github.com/nextcloud/activity/issues"
  },
  "repository": {
    "url": "https://github.com/nextcloud/activity",
    "type": "git"
  },
  "homepage": "https://github.com/nextcloud/activity",
  "license": "agpl",
  "private": true,
  "scripts": {
    "build": "NODE_ENV=production webpack --progress --config webpack.js",
    "dev": "NODE_ENV=development webpack --progress --config webpack.js",
    "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
    "serve": "NODE_ENV=development webpack serve --progress --config webpack.js",
    "lint": "eslint --ext .js,.vue src",
    "lint:fix": "eslint --ext .js,.vue src --fix",
    "stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
    "stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix",
    "test": "NODE_ENV=test jest --passWithNoTests src/",
    "test:coverage": "NODE_ENV=test jest --coverage src/",
    "test:update-snapshots": "NODE_ENV=test jest --updateSnapshot"
  },
  "engines": {
    "node": "^16.0.0",
    "npm": "^7.0.0 || ^8.0.0"
  },
  "browserslist": [
    "extends @nextcloud/browserslist-config"
  ],
  "jest": {
    "verbose": true,
    "moduleFileExtensions": [
      "js",
      "json",
      "vue"
    ],
    "testEnvironment": "jest-environment-jsdom",
    "transform": {
      "^.+\\.js$": "babel-jest",
      "^.+\\.vue$": "vue-jest"
    },
    "transformIgnorePatterns": [
      "\\.pnp\\.[^\\/]+$",
      "/node_modules/(?!(@nextcloud/vue-richtext)|(vue-material-design-icons)/)"
    ],
    "snapshotSerializers": [
      "<rootDir>/node_modules/jest-serializer-vue"
    ],
    "setupFilesAfterEnv": [
      "./src/tests/setup.js"
    ],
    "coverageDirectory": "./coverage/",
    "collectCoverage": false,
    "collectCoverageFrom": [
      "<rootDir>/src/**/*.{js,vue}",
      "!**/node_modules/**"
    ],
    "coverageReporters": [
      "json",
      "text",
      "html",
      "lcov",
      "clover"
    ]
  },
  "dependencies": {
    "@nextcloud/auth": "^2.0.0",
    "@nextcloud/axios": "^2.0.0",
    "@nextcloud/dialogs": "^3.1.4",
    "@nextcloud/initial-state": "^2.0.0",
    "@nextcloud/l10n": "^1.6.0",
    "@nextcloud/logger": "^2.3.0",
    "@nextcloud/moment": "^1.2.1",
    "@nextcloud/paths": "^2.1.0",
    "@nextcloud/router": "^2.0.0",
    "@nextcloud/vue": "^7.0.0-beta.3",
    "@nextcloud/vue-dashboard": "^2.0.1",
    "@nextcloud/vue-richtext": "^2.0.4",
    "vue": "^2.7.10",
    "vue-material-design-icons": "^5.1.2",
    "vuex": "^3.6.2"
  },
  "devDependencies": {
    "@cypress/browserify-preprocessor": "^3.0.2",
    "@nextcloud/babel-config": "^1.0.0",
    "@nextcloud/browserslist-config": "^2.3.0",
    "@nextcloud/eslint-config": "^8.1.2",
    "@nextcloud/stylelint-config": "^2.2.0",
    "@nextcloud/webpack-vue-config": "^5.3.0",
    "@testing-library/vue": "^5.8.3",
    "@types/jest": "^29.0.3",
    "@vue/test-utils": "^1.3.0",
    "babel-core": "^7.0.0-bridge.0",
    "cypress": "^9.6.1",
    "jest": "^29.0.1",
    "jest-environment-jsdom": "^29.1.2",
    "jest-serializer-vue": "^2.0.2",
    "regenerator-runtime": "^0.13.9",
    "vue-jest": "^3.0.7",
    "vue-template-compiler": "^2.7.10"
  }
}