luma.gl/modules/debug/package.json
2019-01-18 21:28:49 -08:00

45 lines
1.3 KiB
JSON

{
"name": "@luma.gl/debug",
"version": "7.0.0-alpha.7",
"description": "Debug utilities for luma.gl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uber/luma.gl"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"webgl",
"glsl",
"debug",
"3d"
],
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/es6/index.js",
"files": [
"src",
"dist",
"README.md"
],
"sideEffects": false,
"browser": {
"fs": false
},
"scripts": {
"clean": "rm -fr dist && mkdir -p dist/es5 dist/esm dist/es6",
"build": "npm run clean && npm run build-es6 && npm run build-esm && npm run build-es5",
"build-es6": "BABEL_ENV=es6 babel src --config-file ../../babel.config.js --out-dir dist/es6 --source-maps --ignore 'node_modules/'",
"build-esm": "BABEL_ENV=esm babel src --config-file ../../babel.config.js --out-dir dist/esm --source-maps --ignore 'node_modules/'",
"build-es5": "BABEL_ENV=es5 babel src --config-file ../../babel.config.js --out-dir dist/es5 --source-maps --ignore 'node_modules/'"
},
"dependencies": {
"@luma.gl/constants": "^7.0.0-alpha.6",
"glsl-transpiler": "^1.8.5",
"luma.gl": "^7.0.0-alpha.7",
"webgl-debug": "^2.0.1"
}
}