forked from hoverinc/ray-tracing-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.39 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "ray-tracing-renderer",
"version": "0.6.4",
"description": "A [Three.js](https://github.com/mrdoob/three.js/) renderer which utilizes path tracing to render a scene with true photorealism. The renderer supports global illumination, reflections, soft shadows, and realistic environment lighting.",
"main": "build/RayTracingRenderer.js",
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"dev": "./node_modules/.bin/rollup -cw --environment DEV & ./node_modules/.bin/http-server",
"test": "./node_modules/jest/bin/jest.js",
"release": "./scripts/release.sh"
},
"author": "HOVER Inc",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.8.0",
"dat.gui": "^0.7.6",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"release-it": "^12.4.3",
"rollup": "^1.19.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"stats.js": "^0.17.0",
"three": "^0.107.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoverinc/ray-tracing-renderer.git"
},
"keywords": [
"path-tracing",
"ray-tracing",
"global-illumination",
"webgl2",
"bvh",
"three.js"
],
"bugs": {
"url": "https://github.com/hoverinc/ray-tracing-renderer/issues"
},
"homepage": "https://hoverinc.github.io/ray-tracing-renderer/"
}