hoverinc/ray-tracing-renderer

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "ray-tracing-renderer",
  "version": "0.10.15",
  "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",
    "lint": "./node_modules/.bin/eslint src/ test/",
    "release": "./scripts/release.sh"
  },
  "author": "HOVER Inc",
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.11.6",
    "@babel/preset-env": "^7.11.5",
    "babel-jest": "^26.0.1",
    "dat.gui": "^0.7.6",
    "eslint": "^7.8.1",
    "http-server": "^0.12.3",
    "jest": "^26.0.1",
    "release-it": "^14.0.2",
    "rollup": "^2.26.10",
    "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/"
}