forked from aurora-opensource/xviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "xviz",
"description": "Libraries for encoding, validation and decoding of the XVIZ protocol",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/uber/xviz.git"
},
"workspaces": [
"modules/*"
],
"browser": {
"jsonlint": false
},
"scripts": {
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"bench": "ocular-test bench",
"build": "ocular-clean && yarn build-schema && lerna run pre-build && ocular-build",
"build-schema": "cd modules/schema && yarn build",
"check-copyright-header": "./scripts/check-copyright-header.sh",
"flow": "flow check",
"lint": "ocular-lint",
"publish": "ocular-publish",
"test": "ocular-test",
"test-fast": "ocular-test fast",
"test-ci": "ocular-test cover && (cat coverage/lcov.info | coveralls)",
"cover-html": "ocular-test cover && npx nyc report --reporter=html && open coverage/index.html"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@loaders.gl/core": "^2.2.6",
"@loaders.gl/gltf": "^2.2.6",
"@loaders.gl/polyfills": "^2.2.6",
"@probe.gl/bench": "^3.1.0",
"@probe.gl/test-utils": "^3.1.0",
"ajv": "^6.5.2",
"ajv-cli": "^3.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-inline-import": "^3.0.0",
"clone": "^2.1.2",
"coveralls": "^3.0.0",
"cross-spawn": "^6.0.5",
"json-diff": "^0.5.4",
"jsonlint": "^1.6.3",
"ocular-dev-tools": "0.1.9",
"pre-commit": "^1.2.2",
"protobufjs": "https://github.com/jlisee/protobuf.js#ed8e699671da6f9a169074aa0f2a160cefe0844a",
"reify": "^0.18.1",
"walk": "^2.3.14"
},
"engines": {
"node": ">= 10.16",
"npm": ">= 6",
"yarn": ">= 1.10.0"
},
"pre-commit": [
"check-copyright-header",
"test-fast"
],
"private": true
}