forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "deck.gl-monorepo",
"description": "WebGL-powered visualization framework for large-scale datasets",
"license": "MIT",
"private": true,
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/deck.gl.git"
},
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"clean": "ocular-clean",
"build": "ocular-clean && ocular-build && lerna run build",
"version": "ocular-build core",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish": "ocular-publish",
"start": "open http://visgl.github.io/deck.gl/#/documentation/getting-started/installation?section=running-the-examples",
"test": "ocular-test",
"test-fast": "ocular-test fast",
"test-node": "ocular-test node",
"test-browser": "ocular-test browser",
"bench": "ocular-test bench",
"bench-browser": "ocular-test bench-browser",
"metrics": "ocular-metrics",
"link-luma": "yarn && (cd node_modules && mv luma.gl luma.orig && ln -s ../../luma.gl/modules/core)",
"unlink-luma": "(cd node_modules && mv luma.gl luma.ln && mv luma.orig luma.gl)",
"update-release-branch": "scripts/update-release-branch.sh",
"bindings-precommit-tests": "scripts/bindings-precommit-hook.sh"
},
"browser": {
"jsdom": false
},
"devDependencies": {
"@loaders.gl/csv": "^2.3.0",
"@loaders.gl/polyfills": "^2.3.0",
"@luma.gl/engine": "^8.3.1",
"@luma.gl/test-utils": "^8.3.1",
"@probe.gl/bench": "^3.2.1",
"@probe.gl/test-utils": "^3.2.1",
"abortcontroller-polyfill": "^1.5.0",
"babel-loader": "^8.0.0",
"babel-plugin-inline-webgl-constants": "^1.0.2",
"babel-plugin-remove-glsl-comments": "^0.1.0",
"babel-preset-minify": "^0.5.0",
"canvas": "^2.6.0",
"coveralls": "^3.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-uber-jsx": "^3.3.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.10",
"gl": "^4.3.3",
"glsl-transpiler": "^1.8.3",
"jsdom": "^15.0.0",
"ocular-dev-tools": "^0.1.9",
"png.js": "^0.1.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-map-gl": "^5.1.0",
"reify": "^0.18.1",
"s2-geometry": "^1.2.10"
},
"pre-commit": [
"test-fast",
"bindings-precommit-tests"
]
}