-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.05 KB
/
package.json
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
{
"name": "path-tracer",
"version": "1.0.0",
"description": "Building a path tracer to a college activity",
"main": "path-tracer.cpp",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:common": "g++ path-tracer.cpp -std=c++17 -o path-tracer && path-tracer common < test.txt && python ./convert.py",
"start:bidirectional": "g++ path-tracer.cpp -std=c++17 -o path-tracer && path-tracer bidirectional < test.txt && python ./convert.py",
"start:metropolis": "g++ path-tracer.cpp -std=c++17 -o path-tracer && path-tracer metropolis < test.txt && python ./convert.py",
"build": "g++ path-tracer.cpp -std=c++17 -o path-tracer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FredericoBresani/path-tracer.git"
},
"keywords": [
"path",
"tracer",
"CG",
"renderer"
],
"author": "Frederico Bresani",
"license": "MIT",
"bugs": {
"url": "https://github.com/FredericoBresani/path-tracer/issues"
},
"homepage": "https://github.com/FredericoBresani/path-tracer#readme"
}