mirror of
https://github.com/visgl/luma.gl.git
synced 2026-02-01 14:33:49 +00:00
89 lines
3.1 KiB
JSON
89 lines
3.1 KiB
JSON
{
|
|
"name": "luma.gl",
|
|
"description": "WebGL2 Components for High Performance Rendering and Computation",
|
|
"license": "MIT",
|
|
"private": "true",
|
|
"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"
|
|
],
|
|
"workspaces": [
|
|
"modules/*"
|
|
],
|
|
"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 && (cd modules/core && npm run clean)",
|
|
"build": "(cd modules/core && npm run build)",
|
|
"cover": "(cd modules/core && npm run cover)",
|
|
"lint": "eslint modules 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)",
|
|
"lint-docs": "scripts/lint-markdown.sh",
|
|
"publish-prod": "(cd modules/core && npm run publish-prod)",
|
|
"publish-beta": "(cd modules/core && npm run publish-beta)",
|
|
"test": "scripts/test.sh",
|
|
"test-ci": "scripts/test.sh cover && scripts/test.sh bench",
|
|
"test-fast": "scripts/test.sh fast",
|
|
"test-browser": "webpack-dev-server --config test/webpack.config.js --env.test_browser --progress --hot --open",
|
|
"test-render": "webpack-dev-server --config test/webpack.config.js --env.render --progress --hot --open",
|
|
"bench": "scripts/test.sh bench",
|
|
"bench-browser": "webpack-dev-server --config test/webpack.config.js --env.bench --progress --hot --open",
|
|
"collect-metrics": "./scripts/collect-metrics.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"@babel/register": "^7.0.0",
|
|
"babel-eslint": "^6.0.0",
|
|
"babel-plugin-istanbul": "^4.1.1",
|
|
"babel-plugin-version-inline": "^1.0.0",
|
|
"codecov": "^3.1.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": "^13.0.0",
|
|
"pre-commit": "^1.2.2",
|
|
"puppeteer": "^1.2.0",
|
|
"raw-loader": "^0.5.1",
|
|
"reify": "^0.4.4",
|
|
"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"
|
|
},
|
|
"pre-commit": [
|
|
"test-fast"
|
|
]
|
|
}
|