22 lines
892 B
JSON
22 lines
892 B
JSON
{
|
|
"name": "@element-hq/synapse-guest-module",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "A synapse module to restrict the actions of guests",
|
|
"author": "New Vector Ltd.",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"clean": "echo \"Nothing to clean\"",
|
|
"build": "echo \"Nothing to build\"",
|
|
"docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .",
|
|
"tsc": "echo \"Nothing to tsc\"",
|
|
"lint": "echo \"Nothing to lint\"",
|
|
"types:py": "node ./scripts/run_in_venv.js tox -e check_types",
|
|
"lint:py": "node ./scripts/run_in_venv.js tox -e check_codestyle",
|
|
"lint:fix": "node ./scripts/run_in_venv.js tox -e fix_codestyle",
|
|
"test": "node ./scripts/run_in_venv.js tox -e py",
|
|
"depcheck": "echo \"Nothing to check\"",
|
|
"package": "yarn docker:build"
|
|
}
|
|
}
|