-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "hubble.gl-monorepo",
"license": "MIT",
"private": true,
"type": "module",
"description": "Hubble.gl is a powerful open source animation tool for large-scale data sets.",
"author": "Chris Gervang <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/visgl/hubble.gl.git"
},
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "yarn && ocular-bootstrap",
"clean": "ocular-clean",
"build": "npm run clean && ocular-build && lerna run build",
"version": "node scripts/verify-changelog.js && git add CHANGELOG.md",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"test": "ocular-test",
"test-ci": "ocular-lint && ocular-test node && ocular-test cover",
"test-fast": "ocular-test fast",
"test-node": "ocular-test node | tap-spec",
"test-browser": "ocular-test browser",
"test-browser-headless": "ocular-test browser-headless | tap-spec",
"tsclean": "find . -name tsconfig.tsbuildinfo -exec rm {} \\;",
"tsbuild": "tsc -b tsconfig.build.json",
"bench": "ocular-test bench",
"bench-browser": "ocular-test bench-browser",
"metrics": "ocular-metrics"
},
"browser": {
"jsdom": false
},
"keywords": [
"webgl",
"visualization",
"vis.gl",
"deck.gl",
"kepler.gl",
"video"
],
"devDependencies": {
"@loaders.gl/polyfills": "^4.2.0",
"@probe.gl/bench": "^3.5.0",
"@probe.gl/test-utils": "^3.5.0",
"coveralls": "^3.0.0",
"jsdom": "^20.0.0",
"ocular-dev-tools": "2.0.0-alpha.33",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"tap-spec": "^5.0.0",
"tape-catch": "^1.0.6"
},
"resolutions_comments": [
"@loaders.gl/video: https://github.com/visgl/loaders.gl/issues/2164"
],
"resolutions": {
"@loaders.gl/video": "3.0.12"
},
"volta": {
"node": "18.20.5",
"yarn": "4.5.2"
}
}