-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "denim-reverse-engineering",
"version": "2.0.0",
"description": "This application enables to reverse-engineer a microservices architecture from a data perspective.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"evaluation_ast_identification_precision_recall_f1": "node evaluation/ast/identification/ast_identification_precision_recall_f1.js",
"evaluation_ast_identification_heuristics_precision_recall_f1": "node evaluation/ast/identification/ast_identification_heuristics_precision_recall_f1.js",
"evaluation_ast_identification_heuristics_frequency": "node evaluation/ast/identification/ast_identification_heuristics_frequency.js",
"evaluation_nlptr_identification_precision_recall_f1": "node evaluation/nlptr/identification/nlptr_identification_precision_recall_f1.js",
"swagger": "node swagger.js",
"test_unit": "jest --testRegex=^/test/unit/(.*)\\.test\\.js$ --coverage",
"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/reverse-engineering"
},
"keywords": [
"microservice",
"reverse engineering",
"data"
],
"author": "Maxime ANDRÉ",
"contributors": [
"Alexandre HENROTTE",
"Maxime DE RYCKE"
],
"license": "ISC",
"dependencies": {
"@xenova/transformers": "2.17.2",
"adm-zip": "^0.5.16",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-plugin-prettier": "^5.2.3",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"natural": "^7.1.0",
"path": "^0.12.7",
"redis": "^4.5.1",
"sloc": "^0.3.2",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0",
"wink-eng-lite-web-model": "^1.7.1",
"wink-lemmatizer": "^3.0.4",
"wink-nlp": "^2.2.2"
},
"devDependencies": {
"eslint": "^9.36.0",
"jest": "^29.3.1",
"prettier": "3.6.2",
"supertest": "^6.3.3"
},
"jest": {
"testTimeout": 240000,
"modulePathIgnorePatterns": [
"lib"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}