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

78 lines
2.2 KiB
JSON

{
"name": "luma.gl",
"version": "7.0.0-alpha.7",
"description": "WebGL2 Components for High Performance Rendering and Computation",
"license": "MIT",
"contributors": [
"Ib Green <ib@uber.com>",
"Nicolas Belmonte <nico@uber.com>",
"Rye Terrell <ryeterrell@ryeterrell.net",
"Shan He <shan@uber.com>",
"Mikola Lysenko <mikolalysenko@gmail.com",
"Wesam Manassra <manassra@uber.com>",
"Shaojing Li <shaojing@uber.com>",
"Ravi Akenapalli <chandu@uber.com>",
"Xiaoji Chen <xiaoji@uber.com>",
"Jian Huang <jianh@uber.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/uber/luma.gl"
},
"keywords": [
"webgl",
"visualization",
"animation",
"3d"
],
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/es6/index.js",
"files": [
"src",
"dist",
"addons.js",
"constants.js",
"debug.js",
"headless.js",
"webgl1.js",
"README.md"
],
"browser": {
"gl": false,
"gl/wrap": false
},
"scripts": {
"clean": "rm -fr dist dist-es6 && 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/'",
"cover": "../../scripts/test.sh cover",
"prepublishOnly": "npm run build",
"publish-prod": "npm run build && npm run test-fast && npm publish",
"publish-beta": "npm run build && npm run test-fast && npm publish --tag beta"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "^7.0.0-alpha.6",
"@luma.gl/shadertools": "^7.0.0-alpha.7",
"math.gl": "^2.2.0",
"probe.gl": "^2.0.1",
"seer": "^0.2.4"
},
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
]
}
}