-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 750 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "asteroid-explorer",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Browser dashboard for exploring asteroid-belt objects using official JPL SBDB API data.",
"author": "Daniel Häggström Pérez-Flecha",
"license": "MIT",
"homepage": "https://asteroid-explorer.onrender.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/DanielHaggstrom/asteroid_explorer.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "node server.mjs",
"serve": "node server.mjs",
"sample:update": "node scripts/update_startup_sample.mjs",
"sample:update:commit": "node scripts/update_startup_sample.mjs --commit",
"test": "node tests/utils.test.mjs"
}
}