-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "eca-voyage-lab",
"version": "0.1.0",
"private": true,
"description": "Interactive ECA route distance and vessel-speed strategy laboratory",
"license": "MIT",
"homepage": "https://seanwong17.github.io/eca-voyage-lab/",
"repository": {
"type": "git",
"url": "git+https://github.com/SeanWong17/eca-voyage-lab.git"
},
"bugs": {
"url": "https://github.com/SeanWong17/eca-voyage-lab/issues"
},
"keywords": [
"eca",
"maritime",
"shipping",
"route-planning",
"speed-optimization",
"emissions",
"decarbonization",
"operations-research",
"leaflet",
"data-visualization"
],
"engines": {
"node": ">=18"
},
"scripts": {
"check": "node --check src/data/eca.data.js && node --check src/js/model.js && node --check src/js/render.js && node --check src/js/ui.js && node --check src/js/route-editor.js && node --check tests/model-check.js && node --check tests/browser-check.js",
"test:model": "node tests/model-check.js",
"test:browser": "node tests/browser-check.js",
"test": "npm run check && npm run test:model && npm run test:browser"
},
"devDependencies": {
"playwright": "1.61.1"
},
"dependencies": {
"leaflet": "^1.9.4"
}
}