forked from aurora-opensource/streetscape.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.15 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
{
"name": "streetscape.gl",
"description": "Visualizaton engine for 3D maps and autonomous XVIZ protocol data",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/uber/streetscape.gl.git"
},
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "scripts/bootstrap.sh",
"build": "lerna run build",
"cover": "BABEL_ENV=cover nyc node test/start",
"copyright-check": "scripts/copyright.sh",
"lint": "scripts/lint.sh",
"publish": "scripts/publish.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": "npm run lint && node test/start",
"test-fast": "npm run lint fast && node test/start && npm run copyright-check",
"test-browser": "webpack-dev-server --config test/webpack.config.js --hot --open"
},
"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/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.0.0",
"babel-plugin-version-inline": "^1.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-uber-es2015": "^3.1.2",
"eslint-config-uber-jsx": "^3.3.3",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^3.2.0",
"lerna": "^2.9.1",
"module-alias": "^2.0.0",
"nyc": "^10.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"prettier-check": "^2.0.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"source-map-loader": "^0.2.1",
"tap-browser-color": "^0.1.2",
"tape": "^4.9",
"tape-catch": "^1.0.4",
"webpack": "^4.3.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14",
"webworkify-webpack": "^2.0.0"
},
"engines": {
"node": ">= 8",
"npm": ">= 5",
"yarn": ">= 1.10.0"
},
"pre-commit": [
"test-fast"
],
"private": true
}