-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "probe.gl-monorepo",
"description": "JavaScript Console Instrumentation and Benchmarking for Browser and Node",
"license": "MIT",
"type": "module",
"private": true,
"keywords": [
"javascript",
"profiling",
"instrumentation",
"logging"
],
"repository": {
"type": "git",
"url": "https://github.com/uber-web/probe.gl.git"
},
"workspaces": [
"examples/*",
"modules/*"
],
"browser": {
"jsdom": false
},
"scripts": {
"bootstrap": "yarn && ocular-bootstrap && npm run build",
"build": "ocular-clean && ocular-build",
"lint": "ocular-lint",
"publish-prod": "ocular-publish version-only-prod",
"publish-beta": "ocular-publish version-only-beta",
"test": "ocular-test",
"test-fast": "ocular-lint pre-commit && ocular-test node"
},
"devDependencies": {
"@types/tape-promise": "^4.0.1",
"@vis.gl/dev-tools": "1.0.0-alpha.15",
"@vis.gl/ts-plugins": "1.0.0-alpha.15",
"jsdoc-to-markdown": "^3.0.0",
"jsdom": "^16.5.0",
"pre-commit": "^1.2.2",
"puppeteer": "^22.0.0",
"react-dom": "^16.13.1",
"url-loader": "^1.0.1"
},
"pre-commit": [
"test-fast"
],
"volta": {
"node": "20.11.1",
"yarn": "4.1.1"
}
}