-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 915 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 915 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
25
26
27
28
29
30
31
32
33
{
"name": "lensing-visualization",
"version": "1.0.0",
"description": "Interactive visualization of gravitational lensing effects",
"main": "index.html",
"scripts": {
"start": "python3 -m http.server 8080",
"dev": "python3 -m http.server 8080",
"lint": "eslint js/**/*.js",
"lint:fix": "eslint js/**/*.js --fix",
"format": "prettier --write \"js/**/*.js\" \"css/**/*.css\" \"*.html\"",
"format:check": "prettier --check ."
},
"keywords": [
"gravitational-lensing",
"visualization",
"astronomy",
"webgl",
"threejs"
],
"author": "Nico Schuster and Andres Salcedo",
"license": "CC0-1.0",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/nicosmo/lensing_visualization"
}
}