-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.7 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
{
"name": "chatbot-navigator-benchmark",
"version": "1.0.0",
"description": "Benchmark comparison between Python and TypeScript for chatbot flow navigation using HashMap optimization",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"generate-data": "python3 generate_data.py",
"clean-sensitive": "python3 clean_sensitive_data.py",
"benchmark:python": "python3 index.py",
"benchmark:python-advanced": "python3 benchmark_advanced.py",
"benchmark:js": "node --expose-gc benchmark_js.cjs",
"benchmark:ts": "npm run build && node dist/index.js",
"benchmark:all": "npm run benchmark:python && npm run benchmark:js",
"benchmark:comparison": "./final_comparison.sh",
"benchmark:simple": "./benchmark.sh",
"test:small": "npm run benchmark:python && npm run benchmark:js",
"test:large": "npm run generate-data && npm run benchmark:python-advanced && npm run benchmark:js",
"clean": "rm -rf dist/ results_*.txt data/nodes_*.json data/edges_*.json",
"setup": "npm install && sudo apt install python3-psutil -y",
"demo": "python3 index.py",
"help": "./help.sh",
"docs": "cat README.md",
"prepare-github": "./prepare_for_github.sh"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"benchmark",
"chatbot",
"navigation",
"algorithm",
"performance",
"hashmap",
"python",
"typescript",
"javascript",
"memory-optimization"
],
"author": "The-Spik3r",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"python": ">=3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/The-Spik3r/algorithm-HashMap-Map.git"
}
}