-
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.18 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.18 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": "fll-sim",
"version": "1.0.0",
"description": "First Lego League Robot and Map Simulator - Educational Platform & Community Phase",
"main": "src/fll_sim/__init__.py",
"scripts": {
"test": "fll-sim-env/bin/python -m unittest discover tests",
"lint": "flake8 src/ tests/",
"typecheck": "mypy src/",
"format": "black src/",
"coverage": "fll-sim-env/bin/python -m coverage run -m unittest discover tests && fll-sim-env/bin/python -m coverage html"
},
"repository": {
"type": "git",
"url": "https://github.com/hkevin01/FLL-SIM"
},
"author": "FLL-Sim Team",
"license": "MIT",
"devDependencies": {
"flake8": "*",
"mypy": "*",
"black": "*"
},
"copilotConfig": {
"ignore": [
"__pycache__",
"*.pyc",
"*.pyo",
"*.egg-info",
"build/",
"dist/",
"fll-sim-env/",
".env",
".venv",
"env/",
"venv/",
"data/logs/",
"data/cache/",
"test_results/",
".benchmarks/",
"node_modules/",
".github/",
".copilot/",
"assets/",
"simulation_data/",
"models/",
"*.log",
"*.tmp",
"*.bak",
"*.backup"
]
}
}