forked from uber-web/math.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"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",
"build": "ocular-clean && ocular-build",
"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"
},
"dependencies": {
"@babel/runtime": "^7.12.0",
"gl-matrix": "^3.0.0"
},
"devDependencies": {
"@probe.gl/bench": "^3.3.0",
"@probe.gl/test-utils": "^3.3.0",
"@turf/destination": "^6.0.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"coveralls": "^3.0.0",
"eslint-plugin-react": "^7.10",
"ocular-dev-tools": "^0.1.10",
"pre-commit": "^1.2.2",
"reify": "^0.18.1",
"typescript": "^3.9.6"
},
"resolutions": {
"eslint": "^6.8.0"
}
}