-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"name": "math.gl",
"description": "Array-based 3D Math Classes optimized for WebGL applications",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/uber-web/math.gl.git"
},
"workspaces": [
"modules/*",
"examples/*"
],
"scripts": {
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"clean": "ocular-clean && npm run tsclean",
"build": "npm run clean && time npm run tsbuild && time ocular-build",
"tsclean": "find . -name tsconfig.tsbuildinfo -exec rm {} \\;",
"tsbuild": "tsc -b tsconfig.modules.json",
"cover": "ocular-test cover",
"lint": "tsc && ocular-lint",
"metrics": "ocular-metrics",
"publish": "ocular-publish",
"test": "ocular-test",
"test-size-explicit": "npm run build && webpack --config test/webpack.config.js --env.import-vec4-mat4-explicit",
"test-size": "npm run build && webpack --config test/webpack.config.js --env.import-nothing"
},
"devDependencies": {
"@babel/register": "^7.13.16",
"@probe.gl/bench": "^3.5.4",
"@turf/destination": "^6.0.1",
"@types/tape-promise": "^4.0.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"ocular-dev-tools": "2.0.0-alpha.3",
"pre-commit": "^1.2.2",
"typescript": "^5.0.4"
},
"resolutions_notes": [
"Note: tape 4.12 and higher no longer compares 0 and -0 equally...",
"es-abstract breaks on Node 18"
],
"resolutions": {
"tape": "4.11.0",
"es-abstract": "^1.21.1"
},
"dependencies": {}
}