UNPKG

2.29 kBJSONView Raw
1{
2 "name": "luma.gl",
3 "version": "6.3.1",
4 "description": "WebGL2 Components for High Performance Rendering and Computation",
5 "license": "MIT",
6 "contributors": [
7 "Ib Green <ib@uber.com>",
8 "Nicolas Belmonte <nico@uber.com>",
9 "Rye Terrell <ryeterrell@ryeterrell.net",
10 "Shan He <shan@uber.com>",
11 "Mikola Lysenko <mikolalysenko@gmail.com",
12 "Wesam Manassra <manassra@uber.com>",
13 "Shaojing Li <shaojing@uber.com>",
14 "Ravi Akenapalli <chandu@uber.com>",
15 "Xiaoji Chen <xiaoji@uber.com>",
16 "Jian Huang <jianh@uber.com>"
17 ],
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/uber/luma.gl"
21 },
22 "keywords": [
23 "webgl",
24 "visualization",
25 "animation",
26 "3d"
27 ],
28 "main": "dist/es5/index.js",
29 "module": "dist/esm/index.js",
30 "esnext": "dist/es6/index.js",
31 "files": [
32 "src",
33 "dist",
34 "addons.js",
35 "constants.js",
36 "debug.js",
37 "headless.js",
38 "webgl1.js",
39 "README.md"
40 ],
41 "browser": {
42 "gl": false,
43 "gl/wrap": false
44 },
45 "scripts": {
46 "clean": "rm -fr dist dist-es6 && mkdir -p dist/es5 dist/esm dist/es6",
47 "build": "npm run clean && npm run build-es6 && npm run build-esm && npm run build-es5",
48 "build-es6": "BABEL_ENV=es6 babel src --config-file ../../babel.config.js --out-dir dist/es6 --source-maps --ignore 'node_modules/'",
49 "build-esm": "BABEL_ENV=esm babel src --config-file ../../babel.config.js --out-dir dist/esm --source-maps --ignore 'node_modules/'",
50 "build-es5": "BABEL_ENV=es5 babel src --config-file ../../babel.config.js --out-dir dist/es5 --source-maps --ignore 'node_modules/'",
51 "cover": "../../scripts/test.sh cover",
52 "prepublishOnly": "npm run build",
53 "publish-prod": "npm run build && npm run test-fast && npm publish",
54 "publish-beta": "npm run build && npm run test-fast && npm publish --tag beta"
55 },
56 "dependencies": {
57 "@babel/runtime": "^7.0.0",
58 "math.gl": "^2.2.0",
59 "probe.gl": "^2.0.1",
60 "seer": "^0.2.4",
61 "webgl-debug": "^2.0.0"
62 },
63 "nyc": {
64 "require": [
65 "@babel/register"
66 ],
67 "sourceMap": false,
68 "instrument": false,
69 "include": [
70 "src/**/*.js"
71 ],
72 "exclude": [
73 "test/**/*.js"
74 ]
75 },
76 "gitHead": "dd4bc3e3a896808ab4913dc4ff8f11da79e190b7"
77}