-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "@twake/federated-identity-service",
"version": "0.0.1",
"description": "This is the Twake Federated Identity Service",
"keywords": [
"federation",
"identity",
"twake",
"service"
],
"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": "Jordy Cabannes",
"email": "[email protected]"
},
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"dist",
"*.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:example",
"build:example": "rollup -p @rollup/plugin-typescript -e express,@twake/federated-identity-service -m -o example/federated-identity-service.js example/federated-identity-service.ts",
"build:lib": "rollup -c",
"start": "node example/federated-identity-service.js",
"test": "LOG_TRANSPORTS=File LOG_FILE=/dev/null jest"
},
"dependencies": {
"@twake/config-parser": "*",
"@twake/crypto": "*",
"@twake/logger": "*",
"@twake/utils": "*",
"@twake/matrix-identity-server": "*",
"express-validator": "^7.0.1",
"ip-address": "^9.0.5",
"lodash": "^4.17.21"
},
"optionalDependencies": {
"@crowdsec/express-bouncer": "^0.1.0"
}
}