forked from aurora-opensource/xviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.23 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
70
71
72
73
74
75
76
77
78
79
{
"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": "scripts/bootstrap.sh",
"bench": "node test/start bench",
"bench-browser": "node test/start bench-browser",
"build": "lerna run build",
"flow": "flow check",
"cover": "NODE_ENV=cover nyc node test/start",
"lint": "scripts/lint.sh",
"publish-prod": "npm run bootstrap && npm run test && npm run test dist && scripts/publish.sh prod",
"publish-beta": "npm run bootstrap && npm run test && npm run test dist && scripts/publish.sh beta",
"test": "scripts/test.sh",
"test-browser": "node test/start.js browser"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@probe.gl/bench": "^3.0.0-alpha.5",
"@probe.gl/test-utils": "^3.0.0-alpha.4",
"ajv": "^6.5.2",
"ajv-cli": "^3.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.0.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-istanbul": "^5.0.0",
"babel-plugin-version-inline": "^1.0.0",
"clone": "^2.1.2",
"coveralls": "^3.0.0",
"cross-spawn": "^6.0.5",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-uber-es2015": "^3.1.2",
"html-webpack-plugin": "^3.2.0",
"jsonlint": "^1.6.3",
"lerna": "^2.9.1",
"module-alias": "^2.0.0",
"nyc": "^13.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"prettier-check": "^2.0.0",
"source-map-loader": "^0.2.1",
"tap-browser-color": "^0.1.2",
"tape": "^4.9",
"tape-catch": "^1.0.4",
"walk": "^2.3.14",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.14",
"webworkify-webpack": "^2.0.0"
},
"engines": {
"node": ">= 8",
"npm": ">= 5",
"yarn": ">= 1.10.0"
},
"pre-commit": [
"test"
],
"private": true,
"dependencies": {
"protobufjs": "^6.8.8"
}
}