-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "business-ecosystem-logic-proxy",
"version": "9.8.0",
"description": "Logic Layer for the Business API Ecosystem",
"author": "FICODES",
"license": "AGPL-3.0",
"engines": {
"node": ">=16"
},
"dependencies": {
"async": "^1.5.0",
"async-lock": "^0.3.8",
"axios": "^1.5.0",
"base64url": "3.0.x",
"blueimp-md5": "^2.3.1",
"body-parser": "^1.18.3",
"cookie-parser": "1.4.0",
"deep-equal": "^1.0.1",
"deepcopy": "^0.6.3",
"elliptic": "^6.5.7",
"errorhandler": "1.4.x",
"express": "^4.x",
"express-session": "^1.17.3",
"i18n-2": "^0.7.2",
"jade": "^1.11.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^3.0.1",
"log4js": "^6.9.1",
"lru-cache": "^6.0.0",
"merge-dirs": "^0.2.1",
"moment": "^2.29.1",
"mongodb": "6.1.0",
"mongoose": "^7.6.3",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"node-fetch": "^2.6.1",
"node-minify": "^3.6.0",
"normalize-url": "^1.8.0",
"on-finished": "^2.3.0",
"openid-client": "^4.7.4",
"passport": "^0.6.0",
"passport-fiware-oauth": "^0.3.0",
"passport-github": "^1.1.0",
"passport-i4trust": "0.1.0",
"passport-keycloak-oauth2-oidc": "^1.0.5",
"passport-oauth2": "^1.5.0",
"trycatch": "^1.5.21",
"url": "^0.11.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"coveralls": "^3.0.0",
"freeport": "1.0.5",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "2.9.0",
"nock": "^13.3.6",
"proxyquire": "1.7.3"
},
"scripts": {
"lint": "eslint ./lib --ext .js",
"prettier": "prettier --config .prettierrc.json --write '**/**/**/*.js' '**/**/*.js' '**/*.js' '*.js'",
"test": "JASMINE_CONFIG_PATH=test/config/jasmine.json node_modules/.bin/istanbul cover --include-all-sources -x public/**/*.js -x locales/**/*.js -x server.js -x Gruntfile.js -x fill_indexes.js -x config.js node_modules/.bin/jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/FIWARE-TMForum/business-ecosystem-logic-proxy"
},
"contributors": [
{
"name": "Francisco de la Vega",
"email": "[email protected]"
},
{
"name": "Aitor Magán",
"email": "[email protected]"
},
{
"name": "Jaime Pajuelo",
"email": "[email protected]"
},
{
"name": "Miguel Garcia",
"email": "[email protected]"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc.json --write",
"git add"
]
}
}