-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 KB
/
package.json
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
{
"name": "@twake/matrix-identity-server",
"version": "0.0.1",
"description": "Matrix Identity Server",
"keywords": [
"matrix",
"twake"
],
"homepage": "https://ci.linagora.com/publicgroup/oss/twake/tom-server",
"bugs": {
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server/-/issues"
},
"repository": {
"type": "git",
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server.git"
},
"license": "AGPL-3.0-or-later",
"author": [
{
"name": "Xavier Guimard",
"email": "yadd@debian.org"
}
],
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"dist",
"example/identity-server.js",
"templates",
"*.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:example",
"build:example": "rollup -p @rollup/plugin-typescript -e express,@twake/matrix-identity-server -m -o example/identity-server.js example/identity-server.ts",
"build:lib": "rollup -c",
"start": "node example/identity-server.js",
"test": "LOG_TRANSPORTS=File LOG_FILE=/dev/null jest"
},
"dependencies": {
"@twake/config-parser": "*",
"@twake/crypto": "*",
"@twake/logger": "*",
"@twake/utils": "*",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"generic-pool": "^3.9.0",
"jest": "^29.7.0",
"matrix-resolve": "^1.0.1",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.0",
"nodemailer": "^6.9.1",
"toad-cache": "^3.7.0"
},
"optionalDependencies": {
"ldapjs": "^2.3.3",
"node-cache": "^5.1.2",
"pg": "^8.10.0",
"redis": "^4.6.6",
"sqlite3": "^5.1.6"
}
}