-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "denim-visualizing",
"version": "2.0.0",
"description": "This application enables to visualize a microservices architecture from a data perspective.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"swagger": "node swagger.js",
"test_unit": "jest --testRegex=^/test/unit/(.*)\\.test\\.js$ --coverage --forceExit --runInBand",
"test_integration": "jest --testRegex=^/test/integration/(.*)\\.test\\.js$",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs --fix --ignore-pattern .gitignore",
"format": "prettier --ignore-path .prettierignore --write ."
},
"repository": {
"type": "git",
"url": "https://gitlab.unamur.be/denim/visualizing"
},
"keywords": [
"microservice",
"visualizing",
"data"
],
"author": "Maxime ANDRÉ",
"contributors": [
"Maxime DE RYCKE"
],
"license": "ISC",
"dependencies": {
"@eslint/js": "^9.23.0",
"bin-pack": "^1.0.2",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"eslint": "^9.23.0",
"eslint-plugin-prettier": "^5.2.3",
"express": "^4.18.2",
"prettier": "^3.5.3",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"jest": "^29.3.1",
"supertest": "^6.3.3"
},
"jest": {
"testTimeout": 240000
}
}