summary refs log tree commit diff
path: root/pkgs/servers/matrix-synapse/matrix-appservice-irc/package.json
blob: afbafc9b5e96bb9817bfc547dc1a6e92cd4c5f7d (plain) (blame)
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
{
  "name": "matrix-appservice-irc",
  "version": "0.32.1",
  "description": "An IRC Bridge for Matrix",
  "main": "app.js",
  "bin": "./bin/matrix-appservice-irc",
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "prepare": "npm run build",
    "build": "tsc --project ./tsconfig.json",
    "test": "BLUEBIRD_DEBUG=1 jasmine --stop-on-failure=true",
    "lint": "eslint -c .eslintrc --max-warnings 0 'spec/**/*.js' 'src/**/*.ts'",
    "check": "npm test && npm run lint",
    "ci-test": "nyc --report text jasmine",
    "ci": "npm run lint && npm run ci-test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/matrix-org/matrix-appservice-irc.git"
  },
  "author": "",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/matrix-org/matrix-appservice-irc/issues"
  },
  "dependencies": {
    "@sentry/node": "^5.27.1",
    "bluebird": "^3.7.2",
    "diff": "^5.0.0",
    "escape-string-regexp": "^4.0.0",
    "extend": "^3.0.2",
    "he": "^1.2.0",
    "logform": "^2.2.0",
    "matrix-appservice-bridge": "^3.1.2",
    "matrix-org-irc": "^1.2.0",
    "nedb": "^1.1.2",
    "nodemon": "^2.0.7",
    "nopt": "^3.0.1",
    "p-queue": "^6.6.2",
    "pg": "^8.6.0",
    "quick-lru": "^4.0.1",
    "request": "^2.54.0",
    "request-promise-native": "^1.0.9",
    "sanitize-html": "^2.4.0",
    "winston": "^3.3.3",
    "winston-daily-rotate-file": "^4.5.5"
  },
  "devDependencies": {
    "@types/bluebird": "^3.5.32",
    "@types/diff": "^5.0.1",
    "@types/extend": "^3.0.1",
    "@types/he": "^1.1.1",
    "@types/nedb": "^1.8.11",
    "@types/node": "^14",
    "@types/nopt": "^3.0.29",
    "@types/pg": "^8.6.0",
    "@types/sanitize-html": "^2.3.1",
    "@types/express": "4.17.11",
    "@types/express-serve-static-core": "4.17.19",
    "@typescript-eslint/eslint-plugin": "^4.33.0",
    "@typescript-eslint/parser": "^4.33.0",
    "eslint": "^7.21.0",
    "jasmine": "^3.6.2",
    "nyc": "^14.1.1",
    "prom-client": "13.1.0",
    "proxyquire": "^1.4.0",
    "typescript": "^4.4.3"
  }
}