mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
99 lines
3.3 KiB
JSON
99 lines
3.3 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/*"
|
|
],
|
|
"browser": {
|
|
"fs": false
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "scripts/bootstrap.sh",
|
|
"start": "echo 'Please see luma.gl website for how to run examples' && open http://uber.github.io/luma.gl/#/documentation/getting-started/examples",
|
|
"clean": "lerna clean --yes && rm -rf node_modules",
|
|
"build": "lerna run build",
|
|
"cover": "NODE_ENV=cover nyc node test/start",
|
|
"lint": "scripts/lint.sh",
|
|
"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": "yarn bootstrap && yarn test && lerna publish --cd-version minor",
|
|
"publish-beta": "yarn bootstrap && yarn test && lerna publish --npm-tag beta --cd-version prerelease",
|
|
"test": "scripts/test.sh",
|
|
"test-ci": "scripts/test.sh cover && scripts/test.sh bench",
|
|
"test-browser": "webpack-dev-server --config test/webpack.config.js --env.test --progress --hot --open",
|
|
"bench-browser": "webpack-dev-server --config test/webpack.config.js --env.bench --progress --hot --open",
|
|
"collect-metrics": "scripts/collect-metrics.sh",
|
|
"pre-commit": "scripts/test.sh fast"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/plugin-transform-runtime": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"@babel/register": "^7.0.0",
|
|
"babel-eslint": "^9.0.0",
|
|
"babel-loader": "^8.0.0",
|
|
"babel-plugin-istanbul": "^5.0.0",
|
|
"babel-plugin-version-inline": "^1.0.0",
|
|
"codecov": "^3.1.0",
|
|
"coveralls": "^2.13.0",
|
|
"eslint": "4.13.1",
|
|
"eslint-config-prettier": "3.0.1",
|
|
"eslint-config-uber-es2015": "^3.0.0",
|
|
"eslint-plugin-luma-gl-custom-rules": "file:./eslint",
|
|
"eslint-plugin-tree-shaking": "^1.7.3",
|
|
"gl": "^4.1.1",
|
|
"html-webpack-plugin": "^3.0.7",
|
|
"lerna": "^2.9.1",
|
|
"markdownlint-cli": "^0.8.1",
|
|
"mkdirp": "^0.5.1",
|
|
"module-alias": "^2.0.0",
|
|
"nyc": "^13.0.0",
|
|
"pre-commit": "^1.2.2",
|
|
"pre-push": "^0.1.1",
|
|
"prettier": "1.14.3",
|
|
"prettier-check": "2.0.0",
|
|
"puppeteer": "^1.2.0",
|
|
"raw-loader": "^0.5.1",
|
|
"reify": "^0.17.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.20.2",
|
|
"webpack-bundle-analyzer": "^2.11.1",
|
|
"webpack-cli": "^3.1.2",
|
|
"webpack-dev-server": "^3.1.1"
|
|
},
|
|
"pre-commit": [
|
|
"pre-commit"
|
|
]
|
|
}
|