mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
118 lines
5.1 KiB
JSON
118 lines
5.1 KiB
JSON
{
|
|
"name": "luma.gl",
|
|
"version": "5.2.0-beta.2",
|
|
"description": "A WebGL JavaScript visualization library.",
|
|
"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>"
|
|
],
|
|
"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",
|
|
"debug.js",
|
|
"headless.js"
|
|
],
|
|
"scripts": {
|
|
"start": "echo 'Please see luma.gl website for how to run examples' && open http://uber.github.io/luma.gl/#/documentation/getting-started/examples",
|
|
"clean": "rm -fr dist dist-es6 && mkdir -p dist/es5/packages dist/esm/packages dist/es6/packages",
|
|
"build-es6": "BABEL_ENV=es6 babel src --out-dir dist/es6 --source-maps && BABEL_ENV=es6 babel packages --out-dir dist/es6/packages --source-maps",
|
|
"build-esm": "BABEL_ENV=esm babel src --out-dir dist/esm --source-maps && BABEL_ENV=esm babel packages --out-dir dist/esm/packages --source-maps",
|
|
"build-es5": "BABEL_ENV=es5 babel src --out-dir dist/es5 --source-maps && BABEL_ENV=es5 babel packages --out-dir dist/packages --source-maps",
|
|
"build-size": "(echo \"source size\" ; find src/ -name '*.js' | xargs cat | wc -c) && (echo \"dist esm size\" ; find dist/esm -name '*.js' | xargs cat | wc -c) && (echo \"dist/es6 size\" ; find dist/es6 -name '*.js' | xargs cat | wc -c)",
|
|
"build": "npm run clean && npm run build-es6 && npm run build-esm && npm run build-es5 && npm run build-size",
|
|
"cover": "NODE_ENV=test nyc --reporter html --reporter cobertura --reporter=lcov npm run test-cover",
|
|
"lint": "eslint src test && npm run lint-yarn",
|
|
"lint-examples": "eslint examples",
|
|
"lint-yarn": "!(grep -q unpm.u yarn.lock) || (echo 'Please rebuild yarn.lock file using public npmrc' && false)",
|
|
"publish-prod": "npm run build && npm run test-fast && npm publish",
|
|
"publish-beta": "npm run build && npm run test-fast && npm publish --tag beta",
|
|
"bench": "node test/bench/node.js",
|
|
"bench-browser": "webpack-dev-server --config test/webpack.config.js --env.bench --progress --hot --open",
|
|
"test": "npm run lint && npm run test-node && npm run build && npm run test-dist && npm run collect-metrics && npm run test-browser-puppet",
|
|
"test-ci": "npm run lint && npm run build && npm run test-node && npm run test-dist && npm run collect-metrics",
|
|
"test-cover": "NODE_ENV=test tape -r babel-register test/node.js && nyc report",
|
|
"test-fast": "node test/node.js",
|
|
"test-fp64": "(cd src/shadertools/test && webpack-dev-server --progress --hot --open)",
|
|
"test-node": "node test/node.js",
|
|
"test-dist": "npm run build-es6 && node test/start.js test-dist",
|
|
"test-browser": "webpack-dev-server --config test/webpack.config.js --progress --hot --open --env.testBrowser ",
|
|
"test-browser-puppet": "node test/start.js test-browser",
|
|
"test-shader": "npm run build-dist && budo src/test/fp64-shader.spec.js:build/test-bundle.js --dir test --live --open --watch-glob '**/*.{html,css,scss,js,glsl}' -- -t babelify -t brfs-babel",
|
|
"test-size-es6": "npm run build-es6 && NODE_ENV=production webpack --config test/webpack.config.js --env.import-nothing --env.analyze --env.es6",
|
|
"test-size-esm": "npm run build-esm && NODE_ENV=production webpack --config test/webpack.config.js --env.import-nothing --env.analyze --env.esm",
|
|
"collect-metrics": "./scripts/collect-metrics.sh"
|
|
},
|
|
"dependencies": {
|
|
"math.gl": "^1.1.0",
|
|
"probe.gl": "^1.0.0",
|
|
"seer": "^0.2.4",
|
|
"webgl-debug": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.0.0-beta.42",
|
|
"@babel/core": "^7.0.0-beta.42",
|
|
"@babel/polyfill": "7.0.0-beta.42",
|
|
"@babel/preset-env": "7.0.0-beta.42",
|
|
"@babel/preset-es2015": "7.0.0-beta.42",
|
|
"babel-eslint": "^6.0.0",
|
|
"babel-plugin-istanbul": "^4.1.1",
|
|
"babel-plugin-version-inline": "^1.0.0",
|
|
"babel-preset-minify": "^0.4.0-alpha.caaefb4c",
|
|
"browserify": "^13.0.0",
|
|
"coveralls": "^2.13.0",
|
|
"eslint": "^3.0",
|
|
"eslint-config-uber-es2015": "^3.0.0",
|
|
"eslint-plugin-babel": "^4.0.0",
|
|
"gl": "^4.0.2",
|
|
"html-webpack-plugin": "^3.0.7",
|
|
"markdownlint-cli": "^0.8.1",
|
|
"mkdirp": "^0.5.1",
|
|
"module-alias": "^2.0.0",
|
|
"nyc": "^10.2.0",
|
|
"pre-commit": "^1.2.2",
|
|
"puppeteer": "^1.2.0",
|
|
"reify": "^0.4.4",
|
|
"sinon": "^4.1.3",
|
|
"source-map-loader": "^0.2.1",
|
|
"source-map-support": "^0.4.2",
|
|
"tap-browser-color": "^0.1.2",
|
|
"tape": "^4.9.0",
|
|
"tape-catch": "^1.0.4",
|
|
"tape-promise": "^1.1.0",
|
|
"webpack": "^4.3.0",
|
|
"webpack-bundle-analyzer": "^2.11.1",
|
|
"webpack-cli": "^2.0.13",
|
|
"webpack-dev-server": "^3.1.1"
|
|
},
|
|
"nyc": {
|
|
"sourceMap": false,
|
|
"instrument": false,
|
|
"include": [
|
|
"src/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"test/**/*.js"
|
|
]
|
|
}
|
|
}
|