2019-09-25 22:13:20 -04:00
|
|
|
{
|
|
|
|
"name": "mjolnir",
|
2022-05-06 06:25:49 -04:00
|
|
|
"version": "1.4.2",
|
2019-09-25 22:13:20 -04:00
|
|
|
"description": "A moderation tool for Matrix",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"repository": "git@github.com:matrix-org/mjolnir.git",
|
|
|
|
"author": "The Matrix.org Foundation C.I.C.",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2022-02-24 09:46:15 -05:00
|
|
|
"postbuild": "rm -rf lib/test/ && cp -r lib/src/* lib/ && rm -rf lib/src/",
|
2019-11-13 23:38:19 -05:00
|
|
|
"lint": "tslint --project ./tsconfig.json -t stylish",
|
2022-01-06 06:19:19 -05:00
|
|
|
"start:dev": "yarn build && node --async-stack-traces lib/index.js",
|
2021-09-27 07:38:43 -04:00
|
|
|
"test": "ts-mocha --project ./tsconfig.json test/commands/**/*.ts",
|
2022-01-06 06:19:19 -05:00
|
|
|
"test:integration": "NODE_ENV=harness ts-mocha --async-stack-traces --require test/integration/fixtures.ts --project ./tsconfig.json \"test/integration/**/*Test.ts\"",
|
2022-04-12 11:36:35 -04:00
|
|
|
"test:manual": "NODE_ENV=harness ts-node test/integration/manualLaunchScript.ts",
|
|
|
|
"version": "sed -i '/# version automated/s/[0-9][0-9]*\\.[0-9][0-9]*\\.[0-9][0-9]*/'$npm_package_version'/' synapse_antispam/setup.py && git add synapse_antispam/setup.py && cat synapse_antispam/setup.py"
|
2019-09-25 22:13:20 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-02 07:43:05 -05:00
|
|
|
"@types/config": "0.0.41",
|
2021-09-09 11:40:12 -04:00
|
|
|
"@types/crypto-js": "^4.0.2",
|
2022-02-02 07:43:05 -05:00
|
|
|
"@types/html-to-text": "^8.0.1",
|
2022-03-21 05:39:15 -04:00
|
|
|
"@types/humanize-duration": "^3.27.1",
|
2021-10-07 08:42:08 -04:00
|
|
|
"@types/jsdom": "^16.2.11",
|
2021-07-28 04:56:50 -04:00
|
|
|
"@types/mocha": "^9.0.0",
|
2021-09-09 11:40:12 -04:00
|
|
|
"@types/node": "^16.7.10",
|
2022-03-21 05:39:15 -04:00
|
|
|
"@types/shell-quote": "1.7.1",
|
2021-09-09 11:40:12 -04:00
|
|
|
"crypto-js": "^4.1.1",
|
2021-10-07 08:42:08 -04:00
|
|
|
"eslint": "^7.32",
|
2021-07-01 15:45:28 -04:00
|
|
|
"expect": "^27.0.6",
|
|
|
|
"mocha": "^9.0.1",
|
2022-05-03 06:20:40 -04:00
|
|
|
"ts-mocha": "^9.0.2",
|
2021-07-01 15:45:28 -04:00
|
|
|
"tslint": "^6.1.3",
|
2021-10-07 08:42:08 -04:00
|
|
|
"typescript": "^4.3.5",
|
|
|
|
"typescript-formatter": "^7.2"
|
2019-09-25 22:13:20 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-07-01 15:45:28 -04:00
|
|
|
"config": "^3.3.6",
|
2021-10-07 08:42:08 -04:00
|
|
|
"express": "^4.17",
|
2021-11-09 07:15:49 -05:00
|
|
|
"html-to-text": "^8.0.0",
|
2022-03-21 05:39:15 -04:00
|
|
|
"humanize-duration": "^3.27.1",
|
2022-03-07 05:34:25 -05:00
|
|
|
"humanize-duration-ts": "^2.1.1",
|
2021-07-01 15:45:28 -04:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-10-07 08:42:08 -04:00
|
|
|
"jsdom": "^16.6.0",
|
2022-02-24 07:43:31 -05:00
|
|
|
"matrix-bot-sdk": "^0.5.19",
|
2022-03-21 05:39:15 -04:00
|
|
|
"parse-duration": "^1.0.2",
|
|
|
|
"shell-quote": "^1.7.3"
|
2022-01-18 11:33:30 -05:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=14.0.0"
|
2019-09-25 22:13:20 -04:00
|
|
|
}
|
|
|
|
}
|