mjolnir/package.json

32 lines
829 B
JSON
Raw Normal View History

2019-09-26 02:13:20 +00:00
{
"name": "mjolnir",
2021-07-01 21:12:51 +00:00
"version": "0.1.18",
2019-09-26 02:13:20 +00: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",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start:dev": "yarn build && node lib/index.js",
"test": "ts-mocha --project ./tsconfig.json test/**/*.ts"
2019-09-26 02:13:20 +00:00
},
"devDependencies": {
"@types/mocha": "^9.0.0",
2021-08-17 10:51:29 +00:00
"@types/node": "11",
2021-07-01 19:45:28 +00:00
"expect": "^27.0.6",
"mocha": "^9.0.1",
"ts-mocha": "^8.0.0",
"tslint": "^6.1.3",
2021-08-17 10:51:29 +00:00
"typescript": "^4.3.5"
2019-09-26 02:13:20 +00:00
},
"dependencies": {
2021-07-01 19:45:28 +00:00
"config": "^3.3.6",
"escape-html": "^1.0.3",
2021-07-01 19:45:28 +00:00
"js-yaml": "^4.1.0",
"matrix-bot-sdk": "^0.5.19"
2019-09-26 02:13:20 +00:00
}
}