2021-12-06 16:07:01 +00:00
{
"name" : "matrix-appservice-irc" ,
2022-10-30 15:09:59 +00:00
"version" : "0.36.0" ,
2021-12-06 16:07:01 +00:00
"description" : "An IRC Bridge for Matrix" ,
"main" : "app.js" ,
"bin" : "./bin/matrix-appservice-irc" ,
"engines" : {
2022-10-30 15:09:59 +00:00
"node" : ">=16"
2021-12-06 16:07:01 +00:00
} ,
"scripts" : {
"prepare" : "npm run build" ,
"build" : "tsc --project ./tsconfig.json" ,
"test" : "BLUEBIRD_DEBUG=1 jasmine --stop-on-failure=true" ,
2022-10-30 15:09:59 +00:00
"test:e2e" : "jest --config spec/e2e/jest.config.js --forceExit # Can be removed after https://github.com/matrix-org/matrix-appservice-bridge/pull/439 is merged" ,
2021-12-06 16:07:01 +00:00
"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" : {
2022-04-03 18:54:34 +00:00
"@sentry/node" : "^6.17.9" ,
2021-12-06 16:07:01 +00:00
"bluebird" : "^3.7.2" ,
2022-10-30 15:09:59 +00:00
"cross-fetch" : "^3.1.5" ,
"diff" : "^5.1.0" ,
2021-12-06 16:07:01 +00:00
"escape-string-regexp" : "^4.0.0" ,
"extend" : "^3.0.2" ,
"he" : "^1.2.0" ,
2022-10-30 15:09:59 +00:00
"logform" : "^2.4.2" ,
"matrix-appservice-bridge" : "^6.0.0" ,
"matrix-bot-sdk" : "^0.6.2" ,
"matrix-org-irc" : "^1.5.0" ,
"nopt" : "^6.0.0" ,
2021-12-06 16:07:01 +00:00
"p-queue" : "^6.6.2" ,
2022-10-30 15:09:59 +00:00
"pg" : "^8.8.0" ,
2022-04-03 18:54:34 +00:00
"quick-lru" : "^5.1.1" ,
2022-10-30 15:09:59 +00:00
"sanitize-html" : "^2.7.2" ,
"winston" : "^3.8.2" ,
"winston-daily-rotate-file" : "^4.7.1"
2021-12-06 16:07:01 +00:00
} ,
"devDependencies" : {
2022-10-30 15:09:59 +00:00
"@tsconfig/node14" : "^1.0.3" ,
2022-04-03 18:54:34 +00:00
"@types/bluebird" : "^3.5.36" ,
"@types/diff" : "^5.0.2" ,
2022-10-30 15:09:59 +00:00
"@types/express" : "4.17.14" ,
"@types/express-serve-static-core" : "4.17.31" ,
2021-12-06 16:07:01 +00:00
"@types/extend" : "^3.0.1" ,
2022-04-03 18:54:34 +00:00
"@types/he" : "^1.1.2" ,
"@types/nedb" : "^1.8.12" ,
2022-10-30 15:09:59 +00:00
"@types/node" : "^16" ,
2021-12-06 16:07:01 +00:00
"@types/nopt" : "^3.0.29" ,
2022-10-30 15:09:59 +00:00
"@types/pg" : "^8.6.5" ,
2022-04-03 18:54:34 +00:00
"@types/sanitize-html" : "^2.6.2" ,
2022-10-30 15:09:59 +00:00
"@typescript-eslint/eslint-plugin" : "^5.38.0" ,
"@typescript-eslint/parser" : "^5.38.0" ,
"eslint" : "^8.24.0" ,
"homerunner-client" : "^0.0.6" ,
2022-04-03 18:54:34 +00:00
"jasmine" : "^3.99.0" ,
2022-10-30 15:09:59 +00:00
"jest" : "^29.1.1" ,
2022-04-03 18:54:34 +00:00
"nyc" : "^15.1.0" ,
2022-10-30 15:09:59 +00:00
"proxyquire" : "^2.1.3" ,
"ts-jest" : "^29.0.2" ,
"typescript" : "^4.8.3"
2021-12-06 16:07:01 +00:00
}
}